pub type CSTL_IsLt = Option<unsafe extern "C" fn(lhs: *const c_void, rhs: *const c_void) -> bool>;Expand description
Compare two objects for less than.
The function must establish at least a strict weak ordering:
a < b => b < a == false
a < b && b < c => a < c
Aliased Type§
enum CSTL_IsLt {
None,
Some(unsafe extern "C" fn(*const c_void, *const c_void) -> bool),
}