or method

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

Return an Eq that gives the result of or of this Eq and eq.

Implementation

Eq<T> or(Eq<T> eq) => _Eq(
      (x, y) => eqv(x, y) || eq.eqv(x, y),
    );