withThird<T> method

(T1, T2, T) withThird<T>(
  1. T value
)

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

Implementation

(T1, T2, T) withThird<T>(T value) => ($1, $2, value);