Click or drag to resize
mpfr_libmpfr_flags_test Method
Return the 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)
Syntax
public static mpfr_flags_t mpfr_flags_test(
	mpfr_flags_t mask
)

Parameters

mask
Type: Math.Mpfr.Nativempfr_flags_t
The bit flags mask.

Return Value

Type: mpfr_flags_t
Return the flags specified by mask.
Remarks

To test whether any flag from mask is set, compare the return value to 0. You can also test individual flags by AND’ing the result with the mpfr_flags_t values.

Examples
// Set erange and divby0 flags.
mpfr_lib.mpfr_flags_set(mpfr_flags_t.MPFR_FLAGS_ERANGE | mpfr_flags_t.MPFR_FLAGS_DIVBY0);

// Get the erange and inexact flags, and assert that their values.
mpfr_flags_t flags = mpfr_lib.mpfr_flags_test(mpfr_flags_t.MPFR_FLAGS_ERANGE | mpfr_flags_t.MPFR_FLAGS_INEXACT);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_ERANGE) != 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_INEXACT) == 0);
See Also