mpfr_libmpfr_clear Method |
Namespace: Math.Mpfr.Native
public static void mpfr_clear( mpfr_t x )
Public Shared Sub mpfr_clear ( x As mpfr_t )
public: static void mpfr_clear( mpfr_t^ x )
static member mpfr_clear : x : mpfr_t -> unit
Make sure to call this function for all mpfr_t variables when you are done with them.
// Create and initialize a new floating-point number x. mpfr_t x = new mpfr_t(); mpfr_lib.mpfr_init2(x, 64U); // Assert that the value of x is NaN. Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) != 0); // Release unmanaged memory allocated for x. mpfr_lib.mpfr_clear(x);
' Create and initialize a new floating-point number x. Dim x As mpfr_t = New mpfr_t() mpfr_lib.mpfr_init2(x, 64U) ' Assert that the value of x is NaN. Assert.IsTrue(mpfr_lib.mpfr_nan_p(x) <> 0) ' Release unmanaged memory allocated for x. mpfr_lib.mpfr_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.