time-to-botec/squiggle/node_modules/@stdlib/stats/incr/min/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

34 lines
708 B
Plaintext

{{alias}}()
Returns an accumulator function which incrementally computes a minimum
value.
If provided a value, the accumulator function returns an updated minimum
value. If not provided a value, the accumulator function returns the current
minimum value.
If provided `NaN`, the minimum value is `NaN` for all future invocations.
Returns
-------
acc: Function
Accumulator function.
Examples
--------
> var accumulator = {{alias}}();
> var m = accumulator()
null
> m = accumulator( 3.14 )
3.14
> m = accumulator( -5.0 )
-5.0
> m = accumulator( 10.1 )
-5.0
> m = accumulator()
-5.0
See Also
--------