addSecond<T> method

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

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

Implementation

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