CFRange

Header: CFBase.h

A structure representing a range of sequential items in a container, such as characters in a buffer or elements in a collection.

struct CFRange {
    CFIndex location; 
    CFIndex length;
};

Field descriptions

location

An integer representing the starting location of the range.

length

An integer representing the number of items in the range.


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