withSixth<T> method

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

Returns a new tuple with the sixth element replaced by value.

Implementation

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