@szilanor/stream
    Preparing search index...

    Variable minAsyncConst

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

    Returns a collector that returns the smallest value of all entries in the Iterable.

    Type of items in the source.

    Collector that returns the smallest value of all entries in the Iterable.

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