where method

F where(
  1. F fa,
  2. bool predicate(
    1. dynamic a
    )
)

Implementation

F where(F fa, bool predicate(a)) => filter(fa, predicate);