Click or drag to resize
mpfr_libmpfr_buildopt_decimal_p Method
Return a non-zero value if MPFR was compiled with decimal float support, return zero otherwise.

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 int mpfr_buildopt_decimal_p()

Return Value

Type: Int32
Return a non-zero value if MPFR was compiled with decimal float support, return zero otherwise.
Remarks

Return a non-zero value if MPFR was compiled with decimal float support (that is, MPFR was built with the --enable-decimal-float configure option), return zero otherwise.

Examples
// Assert that Decimal float is not available.
Assert.IsTrue(mpfr_lib.mpfr_buildopt_decimal_p() == 0);
See Also