ndJoin6<T1, T2, T3, T4, T5, T6> method

Future<Tuple7<T, T1, T2, T3, T4, T5, T6>> ndJoin6<T1, T2, T3, T4, T5, T6>(
  1. Future<T1> other1,
  2. Future<T2> other2,
  3. Future<T3> other3,
  4. Future<T4> other4,
  5. Future<T5> other5,
  6. Future<T6> other6,
)

Implementation

Future<Tuple7<T, T1, T2, T3, T4, T5, T6>> ndJoin6<T1, T2, T3, T4, T5, T6>(
  Future<T1> other1,
  Future<T2> other2,
  Future<T3> other3,
  Future<T4> other4,
  Future<T5> other5,
  Future<T6> other6,
) =>
    join6(other1, other2, other3, other4, other5, other6);