whereNotNull method

Iterable<T> whereNotNull()

Implementation

Iterable<T> whereNotNull() sync* {
  for (var element in this) {
    if (element != null) yield element;
  }
}