addThird<T> method

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

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

Implementation

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