addFourth<T> method

Tuple9<T1, T2, T3, T, T4, T5, T6, T7, T8> addFourth<T>(
  1. T value
)

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

Implementation

Tuple9<T1, T2, T3, T, T4, T5, T6, T7, T8> addFourth<T>(T value) => Tuple9(
    first, second, third, value, fourth, fifth, sixth, seventh, eighth);