whereNotNull method

Stream<List<T>> whereNotNull()

转换为非空流

Implementation

Stream<List<T>> whereNotNull() {
  return _subject.stream.where(notNull).cast<List<T>>();
}