Returns the element at the specified location in this List. @param location the index of the element to return. @return the element at the specified location. @throws IndexOutOfBoundsException if location < 0 || >= size()
(int location)
| 164 | * if {@code location < 0 || >= size()} |
| 165 | */ |
| 166 | public E get(int location); |
| 167 | |
| 168 | /** |
| 169 | * Returns the hash code for this {@code List}. It is calculated by taking each |
no outgoing calls