minabs
minabs(
@x ## int/float/llll (required)
@y ## int/float/llll (required)
) -> llll
Signed minimum value between the absolute values of @x and @y.
Arguments
@x[int/float/llll]: Numeric value. (required)@y[int/float/llll]: Numeric value. (required)
Output
Signed maximum value [llll]
Usage
minabs(-2...2, 1) ## -1 -1 0 1 1