removeThird method

Tuple3<T1, T2, T4> removeThird()

Returns a new tuple with the third element removed.

Implementation

Tuple3<T1, T2, T4> removeThird() => Tuple3(first, second, fourth);