addFourth<T> method

(T1, T2, T3, T, T4, T5) addFourth<T>(
  1. T value
)

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

Implementation

(T1, T2, T3, T, T4, T5) addFourth<T>(T value) => ($1, $2, $3, value, $4, $5);