mpfr_libmpfr_flags_save Method |
Return all the flags.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static mpfr_flags_t mpfr_flags_save()
Public Shared Function mpfr_flags_save As mpfr_flags_t
public:
static mpfr_flags_t mpfr_flags_save()
static member mpfr_flags_save : unit -> mpfr_flags_t
Return Value
Type:
mpfr_flags_tReturn all the flags.
Remarks
Examples
mpfr_lib.mpfr_flags_set(mpfr_flags_t.MPFR_FLAGS_ERANGE | mpfr_flags_t.MPFR_FLAGS_DIVBY0);
mpfr_flags_t flags = mpfr_lib.mpfr_flags_save();
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_DIVBY0) != 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_ERANGE) != 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_INEXACT) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_NAN) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_OVERFLOW) == 0);
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_UNDERFLOW) == 0);
mpfr_lib.mpfr_flags_set(mpfr_flags_t.MPFR_FLAGS_ERANGE Or mpfr_flags_t.MPFR_FLAGS_DIVBY0)
Dim flags As mpfr_flags_t = mpfr_lib.mpfr_flags_save()
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_DIVBY0) <> 0)
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_ERANGE) <> 0)
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_INEXACT) = 0)
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_NAN) = 0)
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_OVERFLOW) = 0)
Assert.IsTrue((flags & mpfr_flags_t.MPFR_FLAGS_UNDERFLOW) = 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