Click or drag to resize
mpfr_libmpfr_signbit Method
Return a non-zero value iff op has its sign bit set (i.e., if it is negative, -0, or a NaN whose representation has its sign bit set).

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 int mpfr_signbit(
	mpfr_t op
)

Parameters

op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.

Return Value

Type: Int32
Return a non-zero value iff op has its sign bit set (i.e., if it is negative, -0, or a NaN whose representation has its sign bit set).
Examples
// 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);
See Also