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