void_ptr.Equality Operator

GMP Native Interface for .NET

void_ptrEquality 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 ==(
	void_ptr value1,
	void_ptr value2
)
Public Shared Operator = ( 
	value1 As void_ptr,
	value2 As void_ptr
) As Boolean
public:
static bool operator ==(
	void_ptr value1, 
	void_ptr value2
)
static let inline (=)
        value1 : void_ptr * 
        value2 : void_ptr  : bool

Parameters

value1
Type: Math.Gmp.Nativevoid_ptr
A void_ptr value.
value2
Type: Math.Gmp.Nativevoid_ptr
A void_ptr value.

Return Value

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