elem abstract method

bool elem(
  1. R r,
  2. Eq<R> eq
)

Return true when value of r is equal to the value inside this Either. If this Either is Left, then return false.

Implementation

bool elem(R r, Eq<R> eq);