Const
Returns a collector that returns the largest value of all entries in the Iterable.
Type of items in the source.
Collector that returns the largest value of all entries in the Iterable.
const result = maxAsync()([1, 2, 3]);console.log(result); // 3 Copy
const result = maxAsync()([1, 2, 3]);console.log(result); // 3
Returns a collector that returns the largest value of all entries in the Iterable.