Clamp (Math function)

Clamp is when you take a value and restrict/limit it between two other values. Construct and Unity have this function. The syntax usually looks like this: Clamp (value, minimum value, max value)

Could it please be implemented? Thanks!

In the meantime, you can do:

max(min(value, maximum_value), minimum_value)

Thank you very much!