@szilanor/stream
    Preparing search index...

    Variable maxAsyncConst

    maxAsync: AsyncCollectorFunction<number, number | undefined> = ...

    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