combineLatest2Tuple<A, B> function

Stream<(A, B)> combineLatest2Tuple<A, B>(
  1. Stream<A> a,
  2. Stream<B> b
)

Implementation

Stream<(A, B)> combineLatest2Tuple<A, B>(
  Stream<A> a,
  Stream<B> b,
) =>
    combineLatest2(a, b, (a, b) => (a, b));