gmp_lib.mpf_integer_p Method

GMP Native Interface for .NET

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
)
Public Shared Function mpf_integer_p ( 
	op As mpf_t
) As Integer
public:
static int mpf_integer_p(
	mpf_t^ op
)
static member mpf_integer_p : 
        op : mpf_t -> int 

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.
' Set default precision to 64 bits.
gmp_lib.mpf_set_default_prec(64UI)

' Create, initialize, and set a new floating-point number x to 10.
Dim x As 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.
gmp_lib.mpf_clear(x)

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.

See Also