Adds an item to the collection
Removes all items from the collection
Tests to see whether the collection contains the value supplied
Tests to see whether the collection contains all of the supplied values
Tests to see whether the collection contains any of the supplied values
Basically, implementations can safely return true on the first item that is found.
Gets the number of items in the collection
Gets the value at a specified index
This method is an alias to ArrayAccess::offsetGet
Gets an iterator for the values in the collection
Returns the first index found for the specified value
Inserts a value into the list at the specified index
Inserts the supplied values into the list at the specified index
The index must be greater than or equal to 0 and less than or equal to the size of this collection. In other words, an index is valid if
Tests to see if the collection contains no elements
The return value from this method should be equivalent to
Merges the values from the supplied collection into this one
Gets whether the specified index exists in the list
Gets the value at a specified index
Sets the value at a given index.
The index must be greater than or equal to 0 and less than or equal to the size of this collection. In other words, an index is valid if
Removes a value at the specified index
The index must be greater than or equal to 0 and less than the size of this collection. In other words, an index is valid if
Removes the specified value from the collection
Removes all of the specified values from the collection
Removes a value at the specified index
This method is an alias to ArrayAccess::offsetUnset
Removes all values from the collection except for the ones specified
If the collection doesn't contain any of the values supplied, it should simply be emptied.
Sets the value at a given index.
This method is an alias to ArrayAccess::offsetSet.
The index must be greater than or equal to 0 and less than or equal to the size of this collection. In other words, an index is valid if
Removes all elements between $from and $to, including $from.
Puts the items in this collection into an array
Throws an exception
Documentation generated on Mon, 19 May 2008 17:07:05 -0400 by phpDocumentor 1.4.2