ndJoin5<T1, T2, T3, T4, T5> method

Future<Tuple6<T, T1, T2, T3, T4, T5>> ndJoin5<T1, T2, T3, T4, T5>(
  1. Future<T1> other1,
  2. Future<T2> other2,
  3. Future<T3> other3,
  4. Future<T4> other4,
  5. Future<T5> other5,
)

Implementation

Future<Tuple6<T, T1, T2, T3, T4, T5>> ndJoin5<T1, T2, T3, T4, T5>(
  Future<T1> other1,
  Future<T2> other2,
  Future<T3> other3,
  Future<T4> other4,
  Future<T5> other5,
) =>
    join5(other1, other2, other3, other4, other5);