Lines Matching refs:index
11 function offsetExists($index): bool {
12 echo __METHOD__ . "($index)\n";
13 return array_key_exists($index, $this->a);
15 function offsetGet($index): mixed {
16 echo __METHOD__ . "($index)\n";
17 switch($index) {
25 return $this->a[$index];
27 function offsetSet($index, $newval): void {
28 echo __METHOD__ . "($index,$newval)\n";
29 if ($index==3) {
32 $this->a[$index] = $newval;
34 function offsetUnset($index): void {
35 echo __METHOD__ . "($index)\n";
36 unset($this->a[$index]);