filter method

Iterable<E> filter(
  1. bool test(
    1. E element
    )
)

等同 where

Implementation

Iterable<E> filter(bool Function(E element) test) => where(test);