exists abstract method

bool exists(
  1. bool predicate(
    1. R r
    )
)

Return the result of calliing predicate with the value of Either if it is a Right. Otherwise return false.

Implementation

bool exists(bool Function(R r) predicate);