1
2
3
4
5
6
7
/// unlikely.
#[macro_export]
macro_rules! unlikely {
    ($expr: expr) => {
        ::std::intrinsics::unlikely($expr)
    };
}