removeSecond method

Tuple3<T1, T3, T4> removeSecond()

Returns a new tuple with the second element removed.

Implementation

Tuple3<T1, T3, T4> removeSecond() => Tuple3(first, third, fourth);