removeFourth method

Tuple5<T1, T2, T3, T5, T6> removeFourth()

Returns a new tuple with the fourth element removed.

Implementation

Tuple5<T1, T2, T3, T5, T6> removeFourth() =>
    Tuple5(first, second, third, fifth, sixth);