Skip to main content

Math: min

Find the smallest number from a list of numbers. This is a per-record min over the inputs received together in one call — for a streaming min across rows, see the Aggregate namespace counterpart.

Example
Input: [1, 2, 3, 4, 5, 42]
Ouput: 1

Parameters

This function has no parameters.

Input

Number (multiple)required
Any numbers you want to compare.

Output

Number
The smallest number.