pub const fn likely(b: bool) -> bool
Branch predictor hint, which marks given condition as likely to be
use frozen_core::hints::likely; assert!(likely(true)); assert!(!likely(false));