Returns true if two things are equatable
static assert( areEquatable!(1, 2)); static assert(!areEquatable!(1, "yo")); static assert(!areEquatable!(int, "yo")); static assert( areEquatable!(int, 1));
See Implementation
Returns true if two things are equatable