30 calls to AbstractLazyCollection::initialize() in Zircon Profile 8
- AbstractLazyCollection::add in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Adds an element at the end of the collection.
 - AbstractLazyCollection::clear in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Clears the collection, removing all elements.
 - AbstractLazyCollection::contains in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Checks whether an element is contained in the collection. This is an O(n) operation, where n is the size of the collection.
 - AbstractLazyCollection::containsKey in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Checks whether the collection contains an element with the specified key/index.
 - AbstractLazyCollection::count in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::current in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets the element of the collection at the current iterator position.
 - AbstractLazyCollection::exists in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Tests for the existence of an element that satisfies the given predicate.
 - AbstractLazyCollection::filter in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Returns all the elements of this collection that satisfy the predicate p. The order of the elements is preserved.
 - AbstractLazyCollection::first in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Sets the internal iterator to the first element in the collection and returns this element.
 - AbstractLazyCollection::forAll in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Tests whether the given predicate p holds for all elements of this collection.
 - AbstractLazyCollection::get in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets the element at the specified key/index.
 - AbstractLazyCollection::getIterator in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::getKeys in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets all keys/indices of the collection.
 - AbstractLazyCollection::getValues in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets all values of the collection.
 - AbstractLazyCollection::indexOf in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - 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.
 - AbstractLazyCollection::isEmpty in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Checks whether the collection is empty (contains no elements).
 - AbstractLazyCollection::key in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets the key/index of the element at the current iterator position.
 - AbstractLazyCollection::last in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Sets the internal iterator to the last element in the collection and returns this element.
 - AbstractLazyCollection::map in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Applies the given function to each element in the collection and returns a new collection with the elements returned by the function.
 - AbstractLazyCollection::next in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Moves the internal iterator position to the next element and returns this element.
 - AbstractLazyCollection::offsetExists in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::offsetGet in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::offsetSet in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::offsetUnset in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - AbstractLazyCollection::partition in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.
 - AbstractLazyCollection::remove in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Removes the element at the specified index from the collection.
 - AbstractLazyCollection::removeElement in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Removes the specified element from the collection, if it is found.
 - AbstractLazyCollection::set in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Sets an element in the collection at the specified key/index.
 - AbstractLazyCollection::slice in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Extracts a slice of $length elements starting at position $offset from the Collection.
 - AbstractLazyCollection::toArray in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php  - Gets a native PHP array representation of the collection.