withSixth<T> method

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

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

Implementation

Tuple8<T1, T2, T3, T4, T5, T, T7, T8> withSixth<T>(T value) =>
    Tuple8(first, second, third, fourth, fifth, value, seventh, eighth);