mpfr_libMPFR_VERSION_NUM Method |
Create an integer in the same format as used by
MPFR_VERSION from the given
major,
minor and
patchlevel.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static int MPFR_VERSION_NUM(
int major,
int minor,
int patchlevel
)
Public Shared Function MPFR_VERSION_NUM (
major As Integer,
minor As Integer,
patchlevel As Integer
) As Integer
public:
static int MPFR_VERSION_NUM(
int major,
int minor,
int patchlevel
)
static member MPFR_VERSION_NUM :
major : int *
minor : int *
patchlevel : int -> int
Parameters
- major
- Type: SystemInt32
The major version. - minor
- Type: SystemInt32
The minor version. - patchlevel
- Type: SystemInt32
The patch level.
Return Value
Type:
Int32An integer in the same format as used by
MPFR_VERSION from the given
major,
minor and
patchlevel.
See Also