Implements interfaces:
Abstract class for key-based collections
Located in /Collection/Map/Abstract.php (line 27)
Class | Description |
---|---|
Xyster_Collection_Map | Implementation of a key-based collection |
Xyster_Collection_Map_String | A simple string key-based map |
Tests to see whether the map contains the key supplied
If the supplied value is an object, and the map allows objects as keys, the comparison will be done for identity (===) and not for value (==).
This method is an alias to ArrayAccess::offsetExists
Tests to see whether the map contains the value supplied
If the supplied value is an object, the comparison will be done for identity (===) and not for value (==).
Gets the value corresponding to the supplied key
This method could return null if the value is null, or if the value was not found. Use containsValue to check which is true.
Tests to see if the collection contains no elements
The return value from this method should be equivalent to
Combines this map with the supplied map
The values in the supplied map will take precedence if this map and the supplied map have duplicate keys.
Removes the mapping for the specified key
This method is an alias to ArrayAccess::offsetUnset
Sets a mapping for the key and value supplied
This method is an alias to ArrayAccess::offsetSet
Documentation generated on Mon, 19 May 2008 17:06:51 -0400 by phpDocumentor 1.4.2