Click or drag to resize
mpfr_libmpfr_fits_sshort_p Method
Return non-zero if op would fit in the C data type (16-bit) short when rounded to an integer in the direction rnd.

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_fits_sshort_p(
	mpfr_t op,
	mpfr_rnd_t rnd
)

Parameters

op
Type: Math.Mpfr.Nativempfr_t
The operand floating-point number.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: Int32
Return non-zero if op would fit in the C data type (16-bit) short when rounded to an integer in the direction rnd.
Remarks

For instance, with the MPFR_RNDU rounding mode on −0.5, the result will be non-zero for all mpfr_fits_* functions. For MPFR_RNDF, those functions return non-zero when it is guaranteed that the corresponding conversion function (for example mpfr_get_ui(mpfr_t, mpfr_rnd_t) for mpfr_fits_ulong_p(mpfr_t, mpfr_rnd_t)), when called with faithful rounding, will always return a number that is representable in the corresponding type. As a consequence, for MPFR_RNDF, mpfr_fits_ulong_p(mpfr_t, mpfr_rnd_t) will return non-zero for a non-negative number less or equal to ULONG_MAX.

Examples
// Create, initialize, and set the value of op 4294967295.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);
Assert.IsTrue(mpfr_lib.mpfr_set_ui(op, uint.MaxValue, mpfr_rnd_t.MPFR_RNDN) == 0);

// Assert that op does not fit in short.
Assert.IsTrue(mpfr_lib.mpfr_fits_sshort_p(op, mpfr_rnd_t.MPFR_RNDN) == 0);

// Release unmanaged memory allocated for op.
mpfr_lib.mpfr_clear(op);
See Also