Click or drag to resize
mpfr_libmpfr_inp_str Method
Input a string in base base from stream stream, rounded in the direction rnd, and put the read float in rop.

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 size_t mpfr_inp_str(
	mpfr_t rop,
	ptr<FILE> stream,
	int base,
	mpfr_rnd_t rnd
)

Parameters

rop
Type: Math.Mpfr.Nativempfr_t
The result floating-point number.
stream
Type: Math.Gmp.NativeptrFILE
The input stream.
base
Type: SystemInt32
The base.
rnd
Type: Math.Mpfr.Nativempfr_rnd_t
The rounding direction.

Return Value

Type: size_t
Return the number of bytes read, or if an error occurred, return 0.
Remarks

This function reads a word (defined as a sequence of characters between whitespace) and parses it using mpfr_set_str. See the documentation of O:Math.Mpfr.Native.mpfr_lib.mpfr_strtofr for a detailed description of the valid string formats.

Examples
// Create and initialize op.
mpfr_t op = new mpfr_t();
mpfr_lib.mpfr_init2(op, 64U);

// Write op to a temporary file.
string pathname = System.IO.Path.GetTempFileName();
System.IO.File.WriteAllText(pathname, "123456");

// Read op from the temporary file, and assert that the number of bytes read is 6.
ptr<FILE> stream = new ptr<FILE>();
_wfopen_s(out stream.Value.Value, pathname, "r");
Assert.IsTrue(mpfr_lib.mpfr_inp_str(op, stream, 10, mpfr_rnd_t.MPFR_RNDN) == 6);
fclose(stream.Value.Value);

// Assert that op is 123456.
 Assert.IsTrue(mpfr_lib.mpfr_get_ui(op, mpfr_rnd_t.MPFR_RNDN) == 123456U);

// Delete temporary file.
System.IO.File.Delete(pathname);

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