mpfr_libmpfr_flags_set Method |
Set (raise) the group of flags specified by mask.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_flags_set(
mpfr_flags_t mask
)
Public Shared Sub mpfr_flags_set (
mask As mpfr_flags_t
)
public:
static void mpfr_flags_set(
mpfr_flags_t mask
)
static member mpfr_flags_set :
mask : mpfr_flags_t -> unit
Parameters
- mask
- Type: Math.Mpfr.Nativempfr_flags_t
The bit flags mask.
Examples
mpfr_lib.mpfr_flags_set(mpfr_flags_t.MPFR_FLAGS_ERANGE | mpfr_flags_t.MPFR_FLAGS_INEXACT);
Assert.IsTrue(mpfr_lib.mpfr_erangeflag_p() != 0);
Assert.IsTrue(mpfr_lib.mpfr_inexflag_p() != 0);
mpfr_lib.mpfr_flags_set(mpfr_flags_t.MPFR_FLAGS_ERANGE Or mpfr_flags_t.MPFR_FLAGS_INEXACT)
Assert.IsTrue(mpfr_lib.mpfr_erangeflag_p() <> 0)
Assert.IsTrue(mpfr_lib.mpfr_inexflag_p() <> 0)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also