Operates exactly as #get(int) @param index the index of the value to get @return the value at the given index
(int index)
| 132 | * @return the value at the given index |
| 133 | */ |
| 134 | public double getD(int index) |
| 135 | { |
| 136 | boundsCheck(index); |
| 137 | return array[index]; |
| 138 | } |
| 139 | |
| 140 | @Override |
| 141 | public Double get(int index) |