EitherEq<A, B> constructor

EitherEq<A, B>(
  1. Eq<A> leftEq,
  2. Eq<B> rightEq
)

Constructs an instance of EitherEq.

Requires an instance of Eq<A> and Eq<B>.

Implementation

EitherEq(this.leftEq, this.rightEq);