@szilanor/stream
    Preparing search index...

    Variable maxConst

    max: CollectorFunction<number, number | undefined> = ...

    Returns a collector that returns the maximum value in a sequence of numbers.

    Type of items in the source.

    Collector that returns the maximum value in a sequence of numbers.

    const result = max()([1, 2, 3]);
    console.log(result); // 3