Type Alias CmpFn

Source
pub type CmpFn = for<'l, 'r> unsafe fn(_: PtrConst<'l>, _: PtrConst<'r>) -> Ordering;
Expand description

Function to compare two values and return their ordering

ยงSafety

Both left and right parameters must point to aligned, initialized memory of the correct type.