size_t.Equality Operator

GMP Native Interface for .NET

size_tEquality Operator
Gets a value that indicates whether the two argument values are equal.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static bool operator ==(
	size_t value1,
	size_t value2
)
Public Shared Operator = ( 
	value1 As size_t,
	value2 As size_t
) As Boolean
public:
static bool operator ==(
	size_t value1, 
	size_t value2
)
static let inline (=)
        value1 : size_t * 
        value2 : size_t  : bool

Parameters

value1
Type: Math.Gmp.Nativesize_t
A size_t value.
value2
Type: Math.Gmp.Nativesize_t
A size_t value.

Return Value

Type: Boolean
True if the two values are equal, and False otherwise.
See Also