pub type CSTL_IsEq = Option<unsafe extern "C" fn(lhs: *const c_void, rhs: *const c_void) -> bool>;Expand description
Compare two objects for equality.
The function must establish an equivalence relation:
a == b => b == a, a == b && b == c => a == c
Aliased Type§
pub enum CSTL_IsEq {
None,
Some(unsafe extern "C" fn(*const c_void, *const c_void) -> bool),
}