IEqualityComparer<T>
Overview
Equality comparer interface
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
Required Methods
constructor (declared in Object)
Default constructor.
constructor
IEqualityComparer<T>()
init()
IEqualityComparer<T>()
Returns true if the target object matches this one, by default compares the reference.
Parameters:
- obj: the reference to compare this with.
Equals (T, T): Boolean
Equals operator; should return true if both values are the same.
method Equals(x: T; y: T): Boolean
Boolean Equals(T x, T y)
func Equals(_ x: T, _ y: T) -> Boolean
Boolean Equals(T x, T y)
Parameters:
- x:
- y:
Finalize protected virtual (declared in Object)
Finalizer implementation. If not overriden it's not called at all, the runtime checks if there is an override before calling a finalizer.
method Finalize
void Finalize()
func Finalize()
void Finalize()
GetHashCode virtual (declared in Object)
Returns a hashcode for this object. Overriden implementations should make sure that the number returned here is constant given the same object.
GetHashCode (T): Int32
Gets a hash of this value.
method GetHashCode(obj: T): Int32
Int32 GetHashCode(T obj)
func GetHashCode(_ obj: T) -> Int32
Int32 GetHashCode(T obj)
Parameters:
- obj:
GetType (declared in Object)
Returns the actual type of this class
ToString virtual (declared in Object)
Gets the string representation of this method.
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
Parameters:
- a: left value
- b: right value