Click or drag to resize
gmp_libmpf_fits_slong_p Method
Return non-zero if op fits in a 32-bit integer, when truncated to 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_fits_slong_p(
	mpf_t op
)

Parameters

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

Return Value

Type: Int32
Return non-zero if op fits in a 32-bit integer, when truncated to an integer.
Examples
// Create, initialize, and set the value of op 4294967295.
mpf_t op = new mpf_t();
gmp_lib.mpf_init_set_ui(op, uint.MaxValue);

// Assert that op does not fit in long.
Assert.IsTrue(gmp_lib.mpf_fits_slong_p(op) == 0);

// Release unmanaged memory allocated for op.
gmp_lib.mpf_clear(op);
See Also