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.