orEmpty method

Stream<X> orEmpty()

Implementation

Stream<X> orEmpty() {
  return this ?? Stream<X>.empty();
}