英語版
このページの英語版を見る

core.stdc.fenv

C99用のDヘッダファイル。
このモジュールには、標準Cヘッダーから選択された型と関数へのバインディングが含まれている。 関数へのバインディングが含まれている。 <fenv.h>.注釈: これは自動的に生成されるものではない。 は自動的に生成されたものではなく、元のCヘッダーからいくつかの型や関数が省略されている可能性があることに注意してほしい。 を省略することがある。
License:
Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)
Authors:
Sean Kelly

ソース core/stdc/fenv.d

Standards:
ISO/IEC 9899:1999 (E)
FE_INVALID
FE_DENORMAL
規格外
FE_DIVBYZERO
FE_OVERFLOW
FE_UNDERFLOW
FE_INEXACT
FE_ALL_EXCEPT
FE_TONEAREST
FE_DOWNWARD
FE_UPWARD
FE_TOWARDZERO
enum fenv_t* FE_DFL_ENV;
nothrow @nogc int feclearexcept(int excepts);
nothrow @nogc int fetestexcept(int excepts);
nothrow @nogc int feholdexcept(fenv_t* envp);
nothrow @nogc int fegetexceptflag(fexcept_t* flagp, int excepts);
nothrow @nogc int fesetexceptflag(scope const fexcept_t* flagp, int excepts);
nothrow @nogc int fegetround();
nothrow @nogc int fesetround(int round);
nothrow @nogc int fegetenv(fenv_t* envp);
nothrow @nogc int fesetenv(scope const fenv_t* envp);
nothrow @nogc int feraiseexcept(int excepts);
nothrow @nogc int feupdateenv(scope const fenv_t* envp);