allEqual<A> static method

Eq<A> allEqual<A>()

An Eq<A> in which everything is the same (calling eqv returns always true).

Implementation

static Eq<A> allEqual<A>() => _Eq((x, y) => true);