combine method

Stream<X> combine(
  1. Stream<X> other
)

Implementation

Stream<X> combine(Stream<X> other) {
  return orEmpty().merge(other);
}