macro_rules! likely {
($e:expr) => { ... };
}
Expand description
possible compiler hint that a branch is likely
Technique borrowed from here: https://github.com/rust-lang/hashbrown/pull/209
macro_rules! likely {
($e:expr) => { ... };
}
possible compiler hint that a branch is likely
Technique borrowed from here: https://github.com/rust-lang/hashbrown/pull/209