gmp_libmpf_get_si Method |
Namespace: Math.Gmp.Native
public static int mpf_get_si( mpf_t op )
Public Shared Function mpf_get_si ( op As mpf_t ) As Integer
public: static int mpf_get_si( mpf_t^ op )
static member mpf_get_si : op : mpf_t -> int
If op is too big for the return type, the result is undefined.
See also mpf_fits_slong_p and mpf_fits_ulong_p (see GNU MP - Miscellaneous Float Functions).
// Set default precision to 64 bits. gmp_lib.mpf_set_default_prec(64U); // Create, initialize, and set a new floating-point number to -8.0 mpf_t x = new mpf_t(); gmp_lib.mpf_init_set_d(x, -8.0); // Assert that the value of x is -8. Assert.IsTrue(gmp_lib.mpf_get_si(x) == -8); // Release unmanaged memory allocated for x. gmp_lib.mpf_clear(x);
' Set default precision to 64 bits. gmp_lib.mpf_set_default_prec(64UI) ' Create, initialize, and set a new floating-point number to -8.0 Dim x As New mpf_t() gmp_lib.mpf_init_set_d(x, -8.0) ' Assert that the value of x is -8. Assert.IsTrue(gmp_lib.mpf_get_si(x) = -8) ' 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.