Skip to main content
Module

x/rimbu/mod.ts>Reducer.min

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
variable Reducer.min
import { Reducer } from "https://deno.land/x/rimbu@0.14.0/mod.ts";
const { min } = Reducer;

Returns a Reducer that remembers the minimum value of the numberic inputs.

Examples

Example 1

console.log(Stream.of(5, 3, 7, 4).reduce(Reducer.min()))
// => 3

type

{ (): Reducer<number, number | undefined>; <O>(otherwise: OptLazy<O>): Reducer<number, number | O>; }