removeFirst method

Tuple3<T2, T3, T4> removeFirst()

Returns a new tuple with the first element removed.

Implementation

Tuple3<T2, T3, T4> removeFirst() => Tuple3(second, third, fourth);