EqualityComparator

@uml This interface provides an abstract concept of object equality independent of {@link Object#equals} (object equality) and the {@code ==} operator (reference equality). It can be used to provide algorithm-specific unordered comparisons without requiring changes to the object itself.

@author Sam Harwell

Members

Static functions

hashOf
size_t hashOf(T o)

@uml This method returns a hash code for the object. @safe @nothrow

opEquals
bool opEquals(T a, T b)
Undocumented in source.

Meta