CPIndexSet Class Reference

List of all members.

Public Member Functions

(id) - init [implementation]
(id) - initWithIndex: [implementation]
(id) - initWithIndexesInRange: [implementation]
(id) - initWithIndexSet: [implementation]
(BOOL) - isEqualToIndexSet: [implementation]
(BOOL) - containsIndex: [implementation]
(BOOL) - containsIndexesInRange: [implementation]
(BOOL) - containsIndexes: [implementation]
(BOOL) - intersectsIndexesInRange: [implementation]
(int) - count [implementation]
(int) - firstIndex [implementation]
(int) - lastIndex [implementation]
(unsigned) - indexGreaterThanIndex: [implementation]
(unsigned) - indexLessThanIndex: [implementation]
(unsigned int) - indexGreaterThanOrEqualToIndex: [implementation]
(unsigned int) - indexLessThanOrEqualToIndex: [implementation]
(unsigned) - getIndexes:maxCount:inIndexRange: [implementation]
(CPString- description [implementation]
(id) - initWithCoder: [implementation]
(void) - encodeWithCoder: [implementation]
(id) - copy [implementation]
(id) - mutableCopy [implementation]

Static Public Member Functions

(id) + indexSet [implementation]
(id) + indexSetWithIndex: [implementation]
(id) + indexSetWithIndexesInRange: [implementation]


Detailed Description

Instances of this class are collections of numbers. Each integer can appear in a collection only once.

Definition at line 30 of file CPIndexSet.j.


Member Function Documentation

- (BOOL) containsIndex: (unsigned)  anIndex   [implementation]

Returns YES if the index set contains the specified index.

Parameters:
anIndex the index to check for in the set
Returns:
YES if anIndex is in the receiver index set

Definition at line 174 of file CPIndexSet.j.

- (BOOL) containsIndexes: (CPIndexSet anIndexSet   [implementation]

Returns YES if the receving index set contains all the indices in the argument.

Parameters:
anIndexSet the set of indices to check for in the receiving index set

Definition at line 214 of file CPIndexSet.j.

- (BOOL) containsIndexesInRange: (CPRange)  aRange   [implementation]

Returns YES if the index set contains all the numbers in the specified range.

Parameters:
aRange the range of numbers to check for in the index set

Definition at line 183 of file CPIndexSet.j.

- (id) copy   [implementation]

Creates a deep copy of the index set. The returned copy is mutable. The reason for the two copy methods is for source compatability with GNUStep code.

Returns:
the index set copy

Definition at line 798 of file CPIndexSet.j.

- (int) count   [implementation]

The number of indices in the set

Definition at line 262 of file CPIndexSet.j.

- (CPString) description   [implementation]

Definition at line 410 of file CPIndexSet.j.

- (void) encodeWithCoder: (CPCoder aCoder   [implementation]

Writes out the index set to the specified coder.

Parameters:
aCoder the coder to which the index set will be written

Definition at line 773 of file CPIndexSet.j.

- (int) firstIndex   [implementation]

Return the first index in the set

Definition at line 271 of file CPIndexSet.j.

- (unsigned) getIndexes: (CPArray anArray
maxCount: (unsigned)  aMaxCount
inIndexRange: (CPRange)  aRangePointer 
[implementation]

Fills up the specified array with numbers from the index set within the specified range. The method stops filling up the array until the aMaxCount number have been added or the range maximum is reached.

Parameters:
anArray the array to fill up
aMaxCount the maximum number of numbers to adds
aRangePointer the range of indices to add
Returns:
the number of elements added to the array

Definition at line 363 of file CPIndexSet.j.

- (unsigned) indexGreaterThanIndex: (unsigned)  anIndex   [implementation]

Returns the first index value in the receiver which is greater than anIndex.

Returns:
the closest index or CPNotFound if no match was found

Definition at line 288 of file CPIndexSet.j.

- (unsigned int) indexGreaterThanOrEqualToIndex: (unsigned)  anIndex   [implementation]

Returns the first index value in the receiver which is greater than or equal to anIndex.

Returns:
the matching index or CPNotFound if no match was found

Definition at line 340 of file CPIndexSet.j.

- (unsigned) indexLessThanIndex: (unsigned)  anIndex   [implementation]

Returns the first index value in the receiver which is less than anIndex.

Returns:
the closest index or CPNotFound if no match was found

Definition at line 313 of file CPIndexSet.j.

- (unsigned int) indexLessThanOrEqualToIndex: (unsigned)  anIndex   [implementation]

Returns the first index value in the receiver which is less than or equal to anIndex.

Returns:
the matching index or CPNotFound if no match was found

Definition at line 349 of file CPIndexSet.j.

+ (id) indexSet   [implementation]

Returns a new empty index set.

Definition at line 41 of file CPIndexSet.j.

+ (id) indexSetWithIndex: (int)  anIndex   [implementation]

Returns a new index set with just one index.

Definition at line 49 of file CPIndexSet.j.

+ (id) indexSetWithIndexesInRange: (CPRange)  aRange   [implementation]

Returns a new index set with all the numbers in the specified range.

Parameters:
aRange the range of numbers to add to the index set.

Definition at line 58 of file CPIndexSet.j.

- (id) init   [implementation]

Definition at line 65 of file CPIndexSet.j.

- (id) initWithCoder: (CPCoder aCoder   [implementation]

Initializes the index set from a coder.

Parameters:
aCoder the coder from which to read the index set data
Returns:
the initialized index set

Definition at line 747 of file CPIndexSet.j.

- (id) initWithIndex: (int)  anIndex   [implementation]

Initializes the index set with a single index.

Returns:
the initialized index set

Definition at line 83 of file CPIndexSet.j.

- (id) initWithIndexesInRange: (CPRange)  aRange   [implementation]

Initializes the index set with numbers from the specified range.

Parameters:
aRange the range of numbers to add to the index set
Returns:
the initialized index set

Definition at line 102 of file CPIndexSet.j.

- (id) initWithIndexSet: (CPIndexSet anIndexSet   [implementation]

Initializes the index set with another index set.

Parameters:
anIndexSet the index set from which to read the initial index set
Returns:
the initialized index set

Definition at line 121 of file CPIndexSet.j.

- (BOOL) intersectsIndexesInRange: (CPRange)  aRange   [implementation]

Checks if the receiver contains at least one number in aRange.

Parameters:
aRange the range of numbers to check.
Returns:
YES if the receiving index set contains at least one number in the provided range

Definition at line 240 of file CPIndexSet.j.

- (BOOL) isEqualToIndexSet: (CPIndexSet anIndexSet   [implementation]

Compares the receiver with the provided index set.

Parameters:
anIndexSet the index set to compare to
Returns:
YES if the receiver and the index set are functionally equivalent

Definition at line 147 of file CPIndexSet.j.

- (int) lastIndex   [implementation]

Returns the last index in the set

Definition at line 279 of file CPIndexSet.j.

- (id) mutableCopy   [implementation]

Creates a deep copy of the index set. The returned copy is mutable. The reason for the two copy methods is for source compatability with GNUStep code.

Returns:
the index set copy

Definition at line 809 of file CPIndexSet.j.


The documentation for this class was generated from the following file:

Generated on Thu Dec 11 01:55:50 2008 for Cappuccino by  doxygen 1.5.7.1