AddFirst() AddFirst(object $object) Adds an object into the beginning of the list Parameters object $object
IsEmpty() IsEmpty() : boolean Returns true if the object is empty or false if it isn't Returns boolean
RemoveFirst() RemoveFirst() : object Removes the first object from the list and returns it Returns object
RemoveLast() RemoveLast() : object Removes the last object from the list and returns it Returns object
ObjectIterator() ObjectIterator() : \ArrayIterator Return new ArrayIterator of object Returns \ArrayIterator
Get() Get(object $key) : object Returns the object with the specified $key Parameters object $key Returns object
Set() Set(object $key, object $value) Sets the $value at $key in the map Parameters object $key object $value
Contains() Contains(object $key) : boolean Checks if the $key exists and returns true if it does exist and zoro if it doesn't exist. Parameters object $key Returns boolean — key's existance