Equatable
Functions: operator==
interface Equatable
A type whose instances can be compared for equality, i.e. with the
== and != operators.
equals
bool equals(This& other);Returns true if this is equal to other.
operator==
bool operator==<T: Equatable>(T& a, T& b)Returns true if a equals b.