Function CFBinaryHeapGetValues

Source
pub unsafe extern "C-unwind" fn CFBinaryHeapGetValues(
    heap: &CFBinaryHeap,
    values: *mut *const c_void,
)
Available on crate feature CFBinaryHeap only.
Expand description

Fills the buffer with values from the binary heap.

Parameter heap: The binary heap to be queried. If this parameter is not a valid CFBinaryHeap, the behavior is undefined.

Parameter values: A C array of pointer-sized values to be filled with values from the binary heap. The values in the C array are ordered from least to greatest. If this parameter is not a valid pointer to a C array of at least CFBinaryHeapGetCount() pointers, the behavior is undefined.