removeFifth method

Tuple4<T1, T2, T3, T4> removeFifth()

Returns a new tuple with the fifth element removed.

Implementation

Tuple4<T1, T2, T3, T4> removeFifth() => Tuple4(first, second, third, fourth);