and method

Eq<T> and(
  1. Eq<T> eq
)

Return an Eq that gives the result of and of eq1 and eq2.

Implementation

Eq<T> and(Eq<T> eq) => _Eq(
      (x, y) => eqv(x, y) && eq.eqv(x, y),
    );