removeThird method

Tuple4<T1, T2, T4, T5> removeThird()

Returns a new tuple with the third element removed.

Implementation

Tuple4<T1, T2, T4, T5> removeThird() => Tuple4(first, second, fourth, fifth);