//! Utility functions for the interpreter
#[inline]#[cold]fncold(){}/// A hint that the branch is likely to be taken.
#[inline]pubfnlikely(b:bool)->bool{if!b {cold()}
b
}/// A hint that the branch is unlikely to be taken.
#[inline]pubfnunlikely(b:bool)->bool{if b {cold()}
b
}