addThird<T> method

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

Returns a new tuple with value added at the third position.

Implementation

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