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