mpfr_libmpfr_free_str Method |
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_free_str(
char_ptr str
)
Public Shared Sub mpfr_free_str (
str As char_ptr
)
public:
static void mpfr_free_str(
char_ptr str
)
static member mpfr_free_str :
str : char_ptr -> unit
Parameters
- str
- Type: Math.Gmp.Nativechar_ptr
Pointer to string.
Remarks
The block is assumed to be strlen(str) + 1 bytes.
Examples
ptr<char_ptr> str = new ptr<char_ptr>();
mpfr_t r = "12345e6";
Assert.IsTrue(mpfr_lib.mpfr_asprintf(str, "%Re", r) == 10);
Assert.IsTrue(str.Value.ToString() == "1.2345e+10");
mpfr_lib.mpfr_free_str(str.Value);
mpfr_lib.mpfr_clear(r);
Dim str As ptr(Of char_ptr) = New ptr(Of char_ptr)()
Dim r As mpfr_t = "12345e6"
Assert.IsTrue(mpfr_lib.mpfr_asprintf(str, "%Re", r) = 10)
Assert.IsTrue(str.Value.ToString() = "1.2345e+10")
mpfr_lib.mpfr_free_str(str.Value)
mpfr_lib.mpfr_clear(r)
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