Click or drag to resize
mpfr_libmpfr_buildopt_float128_p Method
Return a non-zero value if MPFR was compiled with ‘__float128’ 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_float128_p()

Return Value

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

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

Examples
// Assert that ‘__float128’ support is not available.
Assert.IsTrue(mpfr_lib.mpfr_buildopt_float128_p() == 0);
See Also