filterNotNull method

Iterable<E> filterNotNull()

Returns a new lazy Iterable with all elements which are not null.

Implementation

Iterable<E> filterNotNull() => whereNotNull();