Click or drag to resize
gmp_libmpf_integer_p Method
Return non-zero if op is an integer.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int mpf_integer_p(
	mpf_t op
)

Parameters

op
Type: Math.Gmp.Nativempf_t
The operand float.

Return Value

Type: Int32
Return non-zero if op is an integer.
Examples
// Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64U);

// Create, initialize, and set a new floating-point number x to 10.
mpf_t x = new mpf_t();
gmp_lib.mpf_init_set_d(x, 10);

// Assert that s is an integer.
Assert.IsTrue(gmp_lib.mpf_integer_p(x) != 0);

// Release unmanaged memory allocated for x.
See Also