//! Utility functions for hints.
//! Used from Hashbrown <https://github.com/rust-lang/hashbrown/blob/0622304393c802aef285257e4864147cc2ac7374/src/util.rs#L12>.
// FIXME: Replace with `core::hint::{likely, unlikely}` once they are stable.
// pub use core::intrinsics::{likely, unlikely};
/// Cold path function.
/// Returns `b` but mark `false` path as cold
/// Returns `b` but mark `true` path as cold