whereNotEmpty method

Stream<List<T>> whereNotEmpty()

转换为非空流

Implementation

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