mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-12-31 07:04:05 +00:00
14 lines
282 B
PHP
14 lines
282 B
PHP
<?php
|
|
namespace MadLisp;
|
|
|
|
class Vector extends Seq
|
|
{
|
|
public function get(int $index)
|
|
{
|
|
if (array_key_exists($index, $this->data)) {
|
|
return $this->data[$index];
|
|
}
|
|
|
|
throw new MadLispException("vector does not contain index $index");
|
|
}
|
|
} |