| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- namespace Doctrine\Common\Collections;
- use Closure;
- use Countable;
- use IteratorAggregate;
- /**
- * @psalm-template TKey of array-key
- * @template-covariant T
- * @template-extends IteratorAggregate<TKey, T>
- */
- interface ReadableCollection extends Countable, IteratorAggregate
- {
- /**
- * Checks whether an element is contained in the collection.
- * This is an O(n) operation, where n is the size of the collection.
- *
- * @param mixed $element The element to search for.
- * @psalm-param TMaybeContained $element
- *
- * @return bool TRUE if the collection contains the element, FALSE otherwise.
- * @psalm-return (TMaybeContained is T ? bool : false)
- *
- * @template TMaybeContained
- */
- public function contains($element);
- /**
- * Checks whether the collection is empty (contains no elements).
- *
- * @return bool TRUE if the collection is empty, FALSE otherwise.
- */
- public function isEmpty();
- /**
- * Checks whether the collection contains an element with the specified key/index.
- *
- * @param string|int $key The key/index to check for.
- * @psalm-param TKey $key
- *
- * @return bool TRUE if the collection contains an element with the specified key/index,
- * FALSE otherwise.
- */
- public function containsKey($key);
- /**
- * Gets the element at the specified key/index.
- *
- * @param string|int $key The key/index of the element to retrieve.
- * @psalm-param TKey $key
- *
- * @return mixed
- * @psalm-return T|null
- */
- public function get($key);
- /**
- * Gets all keys/indices of the collection.
- *
- * @return int[]|string[] The keys/indices of the collection, in the order of the corresponding
- * elements in the collection.
- * @psalm-return list<TKey>
- */
- public function getKeys();
- /**
- * Gets all values of the collection.
- *
- * @return mixed[] The values of all elements in the collection, in the
- * order they appear in the collection.
- * @psalm-return list<T>
- */
- public function getValues();
- /**
- * Gets a native PHP array representation of the collection.
- *
- * @return mixed[]
- * @psalm-return array<TKey,T>
- */
- public function toArray();
- /**
- * Sets the internal iterator to the first element in the collection and returns this element.
- *
- * @return mixed
- * @psalm-return T|false
- */
- public function first();
- /**
- * Sets the internal iterator to the last element in the collection and returns this element.
- *
- * @return mixed
- * @psalm-return T|false
- */
- public function last();
- /**
- * Gets the key/index of the element at the current iterator position.
- *
- * @return int|string|null
- * @psalm-return TKey|null
- */
- public function key();
- /**
- * Gets the element of the collection at the current iterator position.
- *
- * @return mixed
- * @psalm-return T|false
- */
- public function current();
- /**
- * Moves the internal iterator position to the next element and returns this element.
- *
- * @return mixed
- * @psalm-return T|false
- */
- public function next();
- /**
- * 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.
- *
- * @param int $offset The offset to start from.
- * @param int|null $length The maximum number of elements to return, or null for no limit.
- *
- * @return mixed[]
- * @psalm-return array<TKey,T>
- */
- public function slice($offset, $length = null);
- /**
- * Tests for the existence of an element that satisfies the given predicate.
- *
- * @param Closure $p The predicate.
- * @psalm-param Closure(TKey, T):bool $p
- *
- * @return bool TRUE if the predicate is TRUE for at least one element, FALSE otherwise.
- */
- public function exists(Closure $p);
- /**
- * Returns all the elements of this collection that satisfy the predicate p.
- * The order of the elements is preserved.
- *
- * @param Closure $p The predicate used for filtering.
- * @psalm-param Closure(T):bool $p
- *
- * @return ReadableCollection<mixed> A collection with the results of the filter operation.
- * @psalm-return ReadableCollection<TKey, T>
- */
- public function filter(Closure $p);
- /**
- * Applies the given function to each element in the collection and returns
- * a new collection with the elements returned by the function.
- *
- * @psalm-param Closure(T):U $func
- *
- * @return Collection<mixed>
- * @psalm-return Collection<TKey, U>
- *
- * @psalm-template U
- */
- public function map(Closure $func);
- /**
- * Partitions this collection in two collections according to a predicate.
- * Keys are preserved in the resulting collections.
- *
- * @param Closure $p The predicate on which to partition.
- * @psalm-param Closure(TKey, T):bool $p
- *
- * @return ReadableCollection<mixed>[] 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.
- * @psalm-return array{0: ReadableCollection<TKey, T>, 1: ReadableCollection<TKey, T>}
- */
- public function partition(Closure $p);
- /**
- * Tests whether the given predicate p holds for all elements of this collection.
- *
- * @param Closure $p The predicate.
- * @psalm-param Closure(TKey, T):bool $p
- *
- * @return bool TRUE, if the predicate yields TRUE for all elements, FALSE otherwise.
- */
- public function forAll(Closure $p);
- /**
- * 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.
- *
- * @param mixed $element The element to search for.
- * @psalm-param TMaybeContained $element
- *
- * @return int|string|bool The key/index of the element or FALSE if the element was not found.
- * @psalm-return (TMaybeContained is T ? TKey|false : false)
- *
- * @template TMaybeContained
- */
- public function indexOf($element);
- }
|