withItem1 method

Tuple3<T1, T2, T3> withItem1(
  1. T1 v
)

Returns a tuple with the first item set to the specified value.

Implementation

Tuple3<T1, T2, T3> withItem1(T1 v) => Tuple3<T1, T2, T3>(v, item2, item3);