1 | <?php |
||
9 | class ImmVector implements ConstVectorInterface, \ArrayAccess |
||
10 | { |
||
11 | use ImmVectorLikeTrait; |
||
12 | |||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | public function __construct($array = null) |
||
20 | |||
21 | /** |
||
22 | * Gets the collection's iterator |
||
23 | * @return VectorIterator |
||
24 | */ |
||
25 | public function getIterator() |
||
29 | } |
||
30 |