withTuple method

Stream<Tuple3<T1, T2, T3>> withTuple()

Implementation

Stream<Tuple3<T1, T2, T3>> withTuple() =>
    withFunction((s1, s2, s3) => Tuple3(s1, s2, s3));