where abstract method

Maybe<T> where(
  1. bool predicate(
    1. T value
    )
)

Filter the value using the predicate.

Implementation

Maybe<T> where(bool Function(T value) predicate);