addSeventh<T> method

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

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

Implementation

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