CFArrayGetValueAtIndex

Header: CFArray.h Carbon status: Supported

Retrieves the value at the given index.

const void *CFArrayGetValueAtIndex (
    CFArrayRef theArray, 
    CFIndex idx
);
Parameter descriptions
theArray

The array to be queried. If this parameter is not a valid CFArray, the behavior is undefined.

idx

The index of the value to retrieve. If the index is outside the index space of the array (0 to N-1 inclusive, where N is the count of the array), 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)