a and b and returns
the smaller of the two values.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
a and b and returns
the smaller of the two values.
pub fn min, +Drop, +Copy>(a: T, b: T) -> T
use core::cmp::min;
assert!(min(0, 1) == 0);
Was this page helpful?