mpfr_libmpfr_clears Method |
Free the space occupied by all the
mpfr_t variables of the given list
x.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_clears(
params mpfr_t[] x
)
Public Shared Sub mpfr_clears (
ParamArray x As mpfr_t()
)
public:
static void mpfr_clears(
... array<mpfr_t^>^ x
)
static member mpfr_clears :
x : mpfr_t[] -> unit
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The list of floating-point numbers.
Remarks
See mpfr_clear for more details.
The list of floating-point numbers ends when it encounters a null pointer (whose type must also be mpfr_t).
Examples
mpfr_t x1 = new mpfr_t();
mpfr_t x2 = new mpfr_t();
mpfr_t x3 = new mpfr_t();
mpfr_lib.mpfr_inits(x1, x2, x3, null);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) != 0);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) != 0);
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) != 0);
mpfr_lib.mpfr_clears(x1, x2, x3, null);
Dim x1 As mpfr_t = New mpfr_t()
Dim x2 As mpfr_t = New mpfr_t()
Dim x3 As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_inits(x1, x2, x3, Nothing)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x1) <> 0)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x2) <> 0)
Assert.IsTrue(mpfr_lib.mpfr_nan_p(x3) <> 0)
mpfr_lib.mpfr_clears(x1, x2, x3, Nothing)
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