addEighth<T> method

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

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

Implementation

(T1, T2, T3, T4, T5, T6, T7, T, T8) addEighth<T>(T value) =>
    ($1, $2, $3, $4, $5, $6, $7, value, $8);