Type Alias CSTL_IsLt

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*const c_void, *const c_void) -> bool)

Some value of type T.