removeFifth method

Tuple5<T1, T2, T3, T4, T6> removeFifth()

Returns a new tuple with the fifth element removed.

Implementation

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