I find that I frequently end up writing a function that I always call \"clamp()\", that is kind of a combination of min() and max(). Is t
clamp()
min()
max()
What about bound?
bound(min, val, max)
Or constrain?
constrain(val, min, max)