withFirst<T> method
(T, T2)
withFirst<T>(
- T value
Returns a new tuple with the first element replaced by value
.
Implementation
(T, T2) withFirst<T>(T value) => (value, $2);
Returns a new tuple with the first element replaced by value
.
(T, T2) withFirst<T>(T value) => (value, $2);