//! `likely()` and `unlikely()` hints.
//! `core::intrinsics::{likely, unlikely}` are unstable fo now.
//! On stable we can use `#[cold]` to get the same effect.
/// Hints the compiler that this branch is likely to be taken.
/// Hints the compiler that this branch is unlikely to be taken.