withLast<T> method

(T1, T2, T3, T) withLast<T>(
  1. T value
)

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

Implementation

(T1, T2, T3, T) withLast<T>(T value) => ($1, $2, $3, value);