concat method
override
Concatenates two Eq
instances by checking equality on both.
Implementation
@override
/// Concatenates two `Eq` instances by checking equality on both.
Eq<A> concat(Eq<A> x, Eq<A> y) {
return _Eq((A a, A b) => x.equals(a, b) && y.equals(a, b));
}