1 2 3 4 5 6
pub(crate) mod variance; #[inline(always)] pub(crate) const fn max(x: usize, y: usize) -> usize { if x > y { x } else { y } }