Function CFArrayRemoveValueAtIndex

Source
pub unsafe extern "C-unwind" fn CFArrayRemoveValueAtIndex(
    the_array: Option<&CFMutableArray>,
    idx: CFIndex,
)
Available on crate features CFArray and CFBase only.
Expand description

Removes the value with the given index from the array.

Parameter theArray: The array from which the value is to be removed. If this parameter is not a valid mutable CFArray, the behavior is undefined.

Parameter idx: The index from which to remove the value. If the index is outside the index space of the array (0 to N-1 inclusive, where N is the count of the array before the operation), the behavior is undefined.