clamp function

float clamp(x, min, max)
string clamp(x, min, max)
float[] clamp(x, min, max)
string[] clamp(x, min, max)

x floatstringfloat[]string[]

min floatstringfloat[]string[] Must be the same type as x.

max floatstringfloat[]string[] Must be the same type as x.

Returns min if x is less than min, max if x is greater than max, and x otherwise. For arrays, the operation is applied element-wise and an array with the pairwise clamped values is returned.

This function clamps x to the range [min, max].

Related

Examples

clamp(1.5, 0, 1)
# result = 1

clamp(-11, -10, 10)
# result = -10