Returns the number of elements in the array. @return the number of elements in the array.
()
| 76 | * @return the number of elements in the array. |
| 77 | */ |
| 78 | public int size() { |
| 79 | return elements.size(); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Returns an iterator to navigate the elemetns of the array. Since the array is an ordered list, |
no outgoing calls