Functions Index :: A :: ArrayClamp
Module:
Definition:
ArrayClamp(string array, val low_limit, val high_limit)
Description:
Applies the Clamp function to all array elements and returns the resulting array.
Examples:
ax = "3, 5, -8, 12, 4, 2, 10"
ac = ax.ArrayClamp(2, 7) # same as ArrayClamp(ax, 2, 7)
# ac is now "3, 5, 2, 7, 4, 2, 7"
$notes