Gets the value stored at a specific index in the vector @param index the index to access @return the double value in the vector @throws IndexOutOfBoundsException if the index given is greater than or equal to its #length()
(int index)
| 103 | * equal to its {@link #length() } |
| 104 | */ |
| 105 | abstract public double get(int index); |
| 106 | |
| 107 | /** |
| 108 | * Sets the value stored at a specified index in the vector |
no outgoing calls