addLast<T> method

Tuple5<T1, T2, T3, T4, T> addLast<T>(
  1. T value
)

Returns a new tuple with value added at the last position.

Implementation

Tuple5<T1, T2, T3, T4, T> addLast<T>(T value) =>
    Tuple5(first, second, third, fourth, value);