pub fn min(both: integer, b: integer) -> integer
Returns null if either argument is null (consistent with all binary arithmetic operations). Smallest of two integer values.
pub fn max(both: integer, b: integer) -> integer
pub fn clamp(both: integer, lo: integer, hi: integer) -> integer
pub fn min(both: long, b: long) -> long
pub fn max(both: long, b: long) -> long
pub fn clamp(both: long, lo: long, hi: long) -> long
pub fn min(both: single, b: single) -> single
pub fn max(both: single, b: single) -> single
pub fn clamp(both: single, lo: single, hi: single) -> single
pub fn min(both: float, b: float) -> float
pub fn max(both: float, b: float) -> float
pub fn clamp(both: float, lo: float, hi: float) -> float