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