public |
| count() | {@inheritDoc} | |
public | boolean | add(mixed $element) | Adds an element at the end of the collection. | |
public | void | clear() | Clears the collection, removing all elements. | |
public | boolean | contains(mixed $element) | Checks whether an element is contained in the collection. | |
public | boolean | isEmpty() | Checks whether the collection is empty (contains no elements). | |
public | mixed | remove(string|integer $key) | Removes the element at the specified index from the collection. | |
public | boolean | removeElement(mixed $element) | Removes the specified element from the collection, if it is found. | |
public | boolean | containsKey(string|integer $key) | Checks whether the collection contains an element with the specified key/index. | |
public | mixed | get(string|integer $key) | Gets the element at the specified key/index. | |
public | array | getKeys() | Gets all keys/indices of the collection. | |
public | array | getValues() | Gets all values of the collection. | |
public | void | set(string|integer $key, mixed $value) | Sets an element in the collection at the specified key/index. | |
public | array | toArray() | Gets a native PHP array representation of the collection. | |
public | mixed | first() | Sets the internal iterator to the first element in the collection and returns this element. | |
public | mixed | last() | Sets the internal iterator to the last element in the collection and returns this element. | |
public | int|string | key() | Gets the key/index of the element at the current iterator position. | |
public | mixed | current() | Gets the element of the collection at the current iterator position. | |
public | mixed | next() | Moves the internal iterator position to the next element and returns this element. | |
public | boolean | exists(Closure $p) | Tests for the existence of an element that satisfies the given predicate. | |
public | Collection | filter(Closure $p) | Returns all the elements of this collection that satisfy the predicate p. | |
public | boolean | forAll(Closure $p) | Tests whether the given predicate p holds for all elements of this collection. | |
public | Collection | map(Closure $func) | Applies the given function to each element in the collection and returns a new collection with the elements returned by the function. | |
public | array | partition(Closure $p) | Partitions this collection in two collections according to a predicate. | |
public | int|string|bool | indexOf(mixed $element) | Gets the index/key of a given element. The comparison of two elements is strict, that means not only the value but also the type must match. | |
public | array | slice(int $offset, int|null $length = null) | Extracts a slice of $length elements starting at position $offset from the Collection. | |
public |
| getIterator() | {@inheritDoc} | |
public |
| offsetExists($offset) | {@inheritDoc} | |
public |
| offsetGet($offset) | {@inheritDoc} | |
public |
| offsetSet($offset, $value) | {@inheritDoc} | |
public |
| offsetUnset($offset) | {@inheritDoc} | |
public | bool | isInitialized() | Is the lazy collection already initialized? | |
protected | void | initialize() | Initialize the collection | |
abstract protected | void | doInitialize() | Do the initialization logic | |
add()
public boolean add(mixed $element)
Adds an element at the end of the collection.
Parameters
mixed | $element | The element to add. |
Return Value
clear()
public void clear()
Clears the collection, removing all elements.
Return Value
contains()
public boolean contains(mixed $element)
Checks whether an element is contained in the collection.
This is an O(n) operation, where n is the size of the collection.
Parameters
mixed | $element | The element to search for. |
Return Value
boolean | TRUE if the collection contains the element, FALSE otherwise. |
isEmpty()
public boolean isEmpty()
Checks whether the collection is empty (contains no elements).
Return Value
boolean | TRUE if the collection is empty, FALSE otherwise. |
remove()
public mixed remove(string|integer $key)
Removes the element at the specified index from the collection.
Parameters
string|integer | $key | The kex/index of the element to remove. |
Return Value
mixed | The removed element or NULL, if the collection did not contain the element. |
removeElement()
public boolean removeElement(mixed $element)
Removes the specified element from the collection, if it is found.
Parameters
mixed | $element | The element to remove. |
Return Value
boolean | TRUE if this collection contained the specified element, FALSE otherwise. |
containsKey()
public boolean containsKey(string|integer $key)
Checks whether the collection contains an element with the specified key/index.
Parameters
string|integer | $key | The key/index to check for. |
Return Value
boolean | TRUE if the collection contains an element with the specified key/index, FALSE otherwise. |
get()
public mixed get(string|integer $key)
Gets the element at the specified key/index.
Parameters
string|integer | $key | The key/index of the element to retrieve. |
Return Value
getKeys()
public array getKeys()
Gets all keys/indices of the collection.
Return Value
array | The keys/indices of the collection, in the order of the corresponding elements in the collection. |
getValues()
public array getValues()
Gets all values of the collection.
Return Value
array | The values of all elements in the collection, in the order they appear in the collection. |
set()
public void set(string|integer $key, mixed $value)
Sets an element in the collection at the specified key/index.
Parameters
string|integer | $key | The key/index of the element to set. |
mixed | $value | The element to set. |
Return Value
toArray()
public array toArray()
Gets a native PHP array representation of the collection.
Return Value
first()
public mixed first()
Sets the internal iterator to the first element in the collection and returns this element.
Return Value
last()
public mixed last()
Sets the internal iterator to the last element in the collection and returns this element.
Return Value
key()
public int|string key()
Gets the key/index of the element at the current iterator position.
Return Value
current()
public mixed current()
Gets the element of the collection at the current iterator position.
Return Value
next()
public mixed next()
Moves the internal iterator position to the next element and returns this element.
Return Value
exists()
public boolean exists(Closure $p)
Tests for the existence of an element that satisfies the given predicate.
Parameters
Return Value
boolean | TRUE if the predicate is TRUE for at least one element, FALSE otherwise. |
Returns all the elements of this collection that satisfy the predicate p.
The order of the elements is preserved.
Parameters
Closure | $p | The predicate used for filtering. |
Return Value
Collection | A collection with the results of the filter operation. |
forAll()
public boolean forAll(Closure $p)
Tests whether the given predicate p holds for all elements of this collection.
Parameters
Return Value
boolean | TRUE, if the predicate yields TRUE for all elements, FALSE otherwise. |
Applies the given function to each element in the collection and returns a new collection with the elements returned by the function.
Parameters
Return Value
partition()
public array partition(Closure $p)
Partitions this collection in two collections according to a predicate.
Keys are preserved in the resulting collections.
Parameters
Closure | $p | The predicate on which to partition. |
Return Value
array | An array with two elements. The first element contains the collection of elements where the predicate returned TRUE, the second element contains the collection of elements where the predicate returned FALSE. |
indexOf()
public int|string|bool indexOf(mixed $element)
Gets the index/key of a given element. The comparison of two elements is strict, that means not only the value but also the type must match.
For objects this means reference equality.
Parameters
mixed | $element | The element to search for. |
Return Value
int|string|bool | The key/index of the element or FALSE if the element was not found. |
slice()
public array slice(int $offset, int|null $length = null)
Extracts a slice of $length elements starting at position $offset from the Collection.
If $length is null it returns all elements from $offset to the end of the Collection. Keys have to be preserved by this method. Calling this method will only return the selected slice and NOT change the elements contained in the collection slice is called on.
Parameters
int | $offset | The offset to start from. |
int|null | $length | The maximum number of elements to return, or null for no limit. |
Return Value
getIterator()
public getIterator()
offsetExists()
public offsetExists($offset)
offsetGet()
public offsetGet($offset)
offsetSet()
public offsetSet($offset, $value)
offsetUnset()
public offsetUnset($offset)
isInitialized()
public bool isInitialized()
Is the lazy collection already initialized?
Return Value
initialize()
protected void initialize()
Initialize the collection
Return Value
doInitialize()
abstract protected void doInitialize()
Do the initialization logic
Return Value