removeLast method

Tuple2<T1, T2> removeLast()

Returns a new tuple with the last element removed.

Implementation

Tuple2<T1, T2> removeLast() => Tuple2(first, second);