removeSixth method

Tuple5<T1, T2, T3, T4, T5> removeSixth()

Returns a new tuple with the sixth element removed.

Implementation

Tuple5<T1, T2, T3, T4, T5> removeSixth() =>
    Tuple5(first, second, third, fourth, fifth);