mpfr_libmpfr_signbit Method |
Namespace: Math.Mpfr.Native
public static int mpfr_signbit( mpfr_t op )
Public Shared Function mpfr_signbit ( op As mpfr_t ) As Integer
public: static int mpfr_signbit( mpfr_t^ op )
static member mpfr_signbit : op : mpfr_t -> int
// Create, initialize, and set a new integer op to 200. mpfr_t op = new mpfr_t(); mpfr_lib.mpfr_init2(op, 64U); Assert.IsTrue(mpfr_lib.mpfr_init_set_ui(op, 200U, mpfr_rnd_t.MPFR_RNDN) == 0); // Assert sign of op.. Assert.IsTrue(mpfr_lib.mpfr_signbit(op) == 0); // Release unmanaged memory allocated for op. mpfr_lib.mpfr_clear(op);
' Create, initialize, and set a new integer op to 200. Dim op As mpfr_t = New mpfr_t() mpfr_lib.mpfr_init2(op, 64U) Assert.IsTrue(mpfr_lib.mpfr_init_set_ui(op, 200U, mpfr_rnd_t.MPFR_RNDN) = 0) ' Assert sign of op.. Assert.IsTrue(mpfr_lib.mpfr_signbit(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.