intmax_tEquality Operator |
Gets a value that indicates whether the two argument values are equal.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool operator ==(
intmax_t value1,
intmax_t value2
)
Public Shared Operator = (
value1 As intmax_t,
value2 As intmax_t
) As Boolean
public:
static bool operator ==(
intmax_t value1,
intmax_t value2
)
static let inline (=)
value1 : intmax_t *
value2 : intmax_t : bool
Parameters
- value1
- Type: Math.Mpfr.Nativeintmax_t
A intmax_t value. - value2
- Type: Math.Mpfr.Nativeintmax_t
A intmax_t value.
Return Value
Type:
BooleanTrue if the two values are equal, and
False otherwise.
See Also