clamp
The `clamp` function restricts a number to be within a specified range. - It takes three arguments: the number to clamp, the minimum value, and the maximum value. - If the number is less than the minimum, it returns the minimum. - If the number is greater than the maximum, it returns the maximum. - Otherwise, it returns the number itself.