1 | <?php namespace BuildR\Collection\ArrayList; |
||
18 | class ArrayList extends AbstractCollection implements ArrayListInterface { |
||
19 | |||
20 | /** |
||
21 | * {@inheritDoc} |
||
22 | */ |
||
23 | public function add($element) { |
||
26 | |||
27 | /** |
||
28 | * {@inheritDoc} |
||
29 | */ |
||
30 | public function addAll($elements) { |
||
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | public function addTo($index, $element) { |
||
40 | |||
41 | /** |
||
42 | * {@inheritDoc} |
||
43 | */ |
||
44 | public function equals(ArrayListInterface $collection) { |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | public function remove($element) { |
||
54 | |||
55 | public function removeAll($elements) { |
||
58 | |||
59 | /** |
||
60 | * {@inheritDoc} |
||
61 | */ |
||
62 | public function removeAt($index) { |
||
65 | |||
66 | } |
||
67 |