Represents one or more exception flags.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax[FlagsAttribute]
public enum mpfr_flags_t
<FlagsAttribute>
Public Enumeration mpfr_flags_t
[FlagsAttribute]
public enum class mpfr_flags_t
[<FlagsAttribute>]
type mpfr_flags_t
Members
| Member name | Value | Description |
---|
| MPFR_FLAGS_UNDERFLOW | 1 |
Represents the underflow flag.
|
| MPFR_FLAGS_OVERFLOW | 2 |
Represents the overflow flag.
|
| MPFR_FLAGS_NAN | 4 |
Represents the NaN flag.
|
| MPFR_FLAGS_INEXACT | 8 |
Represent the inexact flag.
|
| MPFR_FLAGS_ERANGE | 16 | |
| MPFR_FLAGS_DIVBY0 | 32 |
Represent the divide-by-zero flag.
|
| MPFR_FLAGS_ALL | 63 |
Represents all flags.
|
See Also