addSecond<T> method

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

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

Implementation

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