assume

Function assume 

Source
pub unsafe fn assume(p: bool)
Expand description

Allow the compiler to assume that the given predicate p is always true.

ยงSafety

Callers must ensure that p is true. If this is not the case, the behavior is undefined.