filter abstract method

Option<T> filter(
  1. bool predicate(
    1. T
    )
)

Implementation

Option<T> filter(bool Function(T) predicate);