mpfr_libmpfr_nan_p Method |
Namespace: Math.Mpfr.Native
public static int mpfr_nan_p( mpfr_t op )
Public Shared Function mpfr_nan_p ( op As mpfr_t ) As Integer
public: static int mpfr_nan_p( mpfr_t^ op )
static member mpfr_nan_p : op : mpfr_t -> int
// Create and initialize a new floating-point number op. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); // Assert that op is NaN. Assert.IsTrue(mpfr_lib.mpfr_nan_p(op) != 0); // Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op);
' Create and initialize a new floating-point number op. Dim op As mpfr_t = New mpfr_t() mpfr_lib.mpfr_init2(op, 64U) ' Assert that op is NaN. Assert.IsTrue(mpfr_lib.mpfr_nan_p(op) <> 0) ' Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op)
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.