Macro std::likely

macro likely($cond) { ... }

Hint to the compiler that a particular boolean expression is likely true.

Useful for branch prediction. See also unlikely.

Example