1 <?php declare(strict_types=1);
28 return new ArrayIterator($this->elements);
44 return $this->
get($offset);
52 if (!isset($offset)) {
57 $this->
set($offset, $value);
65 $this->
remove($offset);
73 return count($this->elements);
79 public function add($element) : void
81 $this->elements[] = $element;
87 public function remove($key) :
void 89 if (!isset($this->elements[$key]) && !array_key_exists($key, $this->elements)) {
92 unset($this->elements[$key]);
100 $key = array_search($element, $this->elements,
true);
101 if (
false === $key) {
104 unset($this->elements[$key]);
112 return isset($this->elements[$key]) || array_key_exists($key, $this->elements);
120 return array_search($element, $this->elements,
true);
128 $this->elements = [];
136 return in_array($element, $this->elements,
true);
142 public function get($key)
144 return isset($this->elements[$key]) ? $this->elements[$key] : null;
150 public function set($key, $value) :
void 152 $this->elements[$key] = $value;
160 return empty($this->elements);
168 return array_keys($this->elements);
176 return array_values($this->elements);
182 public function filter(callable $callable)
184 return new static(array_filter($this->elements, $callable));
190 public function slice($offset, $length = null)
192 return new static(array_slice($this->elements, $offset, $length,
true));
__construct(array $elements=[])
ilBuddySystemArrayCollection constructor.
Interface ilBuddySystemCollection.
Class ilBuddySystemArrayCollection A collection which contains all entries of a buddy list...
offsetSet($offset, $value)
slice($offset, $length=null)
filter(callable $callable)