Returns a new lazy Iterable with all elements which are not null.
Iterable<E> whereNotNull() => where((element) => element != null);