Go to the first, previous, next, last section, table of contents.


clamp

Function: clamp { a b x -> r }
file: jobg.t
package: muf
status: alpha

Clamps x to be between a and b.

Result = (x < a ? a : (x > b ? b : x ))


Go to the first, previous, next, last section, table of contents.