StreamTuple2<T1, T2> constructor

StreamTuple2<T1, T2>(
  1. Stream<T1> stream1,
  2. Stream<T2> stream2
)

Implementation

StreamTuple2(
  this.stream1,
  this.stream2,
);