withFourth<T> method

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

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

Implementation

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