Skip to main content

Aggregate: Min

Streaming aggregator that emits the minimum number it has received so far. Reset at the start of every parser execution.

Example
Inputs: 3, 9, 5, 1, 12
Outputs: 3, 3, 3, 1, 1

Parameters

This function has no parameters.

Input

ValueREQUIRED

Number compared against the running minimum.

Output

Result
Smallest value seen so far.