addFifth<T> method

Tuple8<T1, T2, T3, T4, T, T5, T6, T7> addFifth<T>(
  1. T value
)

Returns a new tuple with value added at the fifth position.

Implementation

Tuple8<T1, T2, T3, T4, T, T5, T6, T7> addFifth<T>(T value) =>
    Tuple8(first, second, third, fourth, value, fifth, sixth, seventh);