19 declare(strict_types=1);
31 public function add($element): void;
37 public function remove(
$key):
void;
55 public function getKey($element);
60 public function clear(): void;
66 public function contains($element): bool;
72 public function get(
$key);
78 public function set(
$key, $value):
void;
83 public function isEmpty(): bool;
89 public function getKeys(): array;
102 public function filter(callable $callable):
self;
112 public function slice(
int $offset,
int $length = null):
self;
117 public function toArray(): array;
123 public function equals($other): bool;
Interface ilBuddySystemCollection.
getKeys()
Gets all indices of the collection.
filter(callable $callable)
Returns all the elements of this collection that satisfy the predicate $callable. ...
slice(int $offset, int $length=null)
Extracts a slice of $length elements starting at position $offset from the Collection.
getValues()
Gets all values of the collection.
add($element)
Adds an element at the end of the collection.