mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-22 21:35:03 +00:00
14 lines
263 B
PHP
14 lines
263 B
PHP
<?php
|
|
namespace MadLisp;
|
|
|
|
class Vector extends Seq
|
|
{
|
|
public function get(int $index)
|
|
{
|
|
if ($this->has($index)) {
|
|
return $this->data[$index];
|
|
}
|
|
|
|
throw new MadLispException("vector does not contain index $index");
|
|
}
|
|
} |