addFirst<T> method

Tuple7<T, T1, T2, T3, T4, T5, T6> addFirst<T>(
  1. T value
)

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

Implementation

Tuple7<T, T1, T2, T3, T4, T5, T6> addFirst<T>(T value) =>
    Tuple7(value, first, second, third, fourth, fifth, sixth);