@szilanor/stream
    Preparing search index...

    Variable maxConst

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

    Returns the maximum value in a sequence of numbers.

    Sequence of numbers to find the maximum value.

    Maximum value in the sequence.

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