isErrAnd abstract method

bool isErrAnd(
  1. bool fn(
    1. F
    )
)

Returns true if the result is Err and the value inside of it matches a predicate.

Implementation

bool isErrAnd(bool Function(F) fn);