CSTL_IsEq

Type Alias CSTL_IsEq 

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

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.