19 declare(strict_types=1);
35 public function add(mixed $element): void;
42 public function remove(
string|
int $key):
void;
64 public function getKey(mixed $element):
string|
int;
69 public function clear(): void;
75 public function contains(mixed $element): bool;
82 public function get(
string|
int $key): mixed;
89 public function set(
string|
int $key, mixed $value):
void;
94 public function isEmpty(): bool;
101 public function getKeys(): array;
113 public function filter(callable $callable):
self;
122 public function slice(
int $offset, ?
int $length =
null):
self;
128 public function toArray(): array;
130 public function equals(mixed $other): bool;
contains(mixed $element)
-param T $element
Interface ilBuddySystemCollection.
slice(int $offset, ?int $length=null)
Extracts a slice of $length elements starting at position $offset from the Collection.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getKeys()
Gets all indices of the collection.
filter(callable $callable)
Returns all the elements of this collection that satisfy the predicate $callable. ...
add(mixed $element)
Adds an element at the end of the collection.
getValues()
Gets all values of the collection.
containsKey(string|int $key)
removeElement(mixed $element)