Function cold_path
const fn cold_path()
Hints to the compiler that given path is cold, i.e., unlikely to be taken. The compiler may choose to optimize paths that are not cold at the expense of paths that are cold.
Examples
use cold_path;