whereNotNull method

Iterable<T> whereNotNull()

Implementation

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