mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-23 05:45:06 +00:00
15 lines
268 B
PHP
15 lines
268 B
PHP
|
<?php
|
||
|
namespace MadLisp;
|
||
|
|
||
|
class MList extends Collection
|
||
|
{
|
||
|
public function get(int $index)
|
||
|
{
|
||
|
if ($this->has($index)) {
|
||
|
return $this->data[$index];
|
||
|
}
|
||
|
|
||
|
throw new MadLispException("list does not contain index $index");
|
||
|
}
|
||
|
}
|