Lines Matching refs:index
9 function offsetExists($index): bool {
10 echo __METHOD__ . "($index)\n";
11 return array_key_exists($index, $this->a);
13 function offsetGet($index): mixed {
14 echo __METHOD__ . "($index)\n";
15 switch($index) {
23 return $this->a[$index];
25 function offsetSet($index, $newval): void {
26 echo __METHOD__ . "($index,$newval)\n";
27 if ($index==3) {
30 $this->a[$index] = $newval;
32 function offsetUnset($index): void {
33 echo __METHOD__ . "($index)\n";
34 unset($this->a[$index]);