likely
The likely is a keyword used as a branch prediction hint to compilers.
Syntax
if (x is less than y) likely
{
}
switch (enumerate)
{
likely case Enum::_Value0:
break;
}
The likely is a keyword used as a branch prediction hint to compilers.
if (x is less than y) likely
{
}
switch (enumerate)
{
likely case Enum::_Value0:
break;
}