namespace Ramsey\Collection
Object name | File name | Summary |
---|---|---|
AbstractArray | vendor/ramsey/collection/src/AbstractArray.php | This class provides a basic implementation of `ArrayInterface`, to minimize the effort required to implement this interface. |
AbstractCollection | vendor/ramsey/collection/src/AbstractCollection.php | This class provides a basic implementation of `CollectionInterface`, to minimize the effort required to implement this interface |
AbstractSet | vendor/ramsey/collection/src/AbstractSet.php | This class contains the basic implementation of a collection that does not allow duplicated values (a set), to minimize the effort required to implement this specific type of collection. |
ArrayInterface | vendor/ramsey/collection/src/ArrayInterface.php | `ArrayInterface` provides traversable array functionality to data types. |
Collection | vendor/ramsey/collection/src/Collection.php | A collection represents a group of objects. |
CollectionInterface | vendor/ramsey/collection/src/CollectionInterface.php | A collection represents a group of values, known as its elements. |
DoubleEndedQueue | vendor/ramsey/collection/src/DoubleEndedQueue.php | This class provides a basic implementation of `DoubleEndedQueueInterface`, to minimize the effort required to implement this interface. |
DoubleEndedQueueInterface | vendor/ramsey/collection/src/DoubleEndedQueueInterface.php | A linear collection that supports element insertion and removal at both ends. |
GenericArray | vendor/ramsey/collection/src/GenericArray.php | `GenericArray` represents a standard array object. |
Queue | vendor/ramsey/collection/src/Queue.php | This class provides a basic implementation of `QueueInterface`, to minimize the effort required to implement this interface. |
QueueInterface | vendor/ramsey/collection/src/QueueInterface.php | A queue is a collection in which the entities in the collection are kept in order. |
Set | vendor/ramsey/collection/src/Set.php | A set is a collection that contains no duplicate elements. |