1 2 3 4 5 6 7 8 9 10 11
#[inline(always)] #[cold] fn cold() {} #[inline(always)] pub(crate) fn unlikely(b: bool) -> bool { if b { cold() } b }