CFArrayRemoveValueAtIndex

Header: CFArray.h Carbon status: Supported

Removes the value with the given index from the array.

void CFArrayRemoveValueAtIndex (
    CFMutableArrayRef theArray, 
    CFIndex idx
);
Parameter descriptions
theArray

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

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.

AVAILABILITY

Supported in Carbon. Available in Carbon 1.0.2 and later.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)