time

Module hint

Source
Expand description

Hints to the compiler that affects how code should be emitted or optimized.

Functionsยง

cold_path ๐Ÿ”’
Indicate that a given branch is not likely to be taken, relatively speaking.
likely ๐Ÿ”’
Indicate that a given condition is likely to be true.
unlikely ๐Ÿ”’
Indicate that a given condition is likely to be false.