withItem1<E> method

Tuple3<E, T2, T3> withItem1<E>(
  1. E newItem
)

Returns a tuple with the item1 set to the specified value.

Implementation

Tuple3<E, T2, T3> withItem1<E>(E newItem) => Tuple3(newItem, item2, item3);