fromUniversalEquals<A> static method
An Eq<A> that delegates to universal equality (==).
Implementation
static Eq<A> fromUniversalEquals<A>() => _Eq((x, y) => x == y);
An Eq<A> that delegates to universal equality (==).
static Eq<A> fromUniversalEquals<A>() => _Eq((x, y) => x == y);