Get the optional object value associated with an index. @param index The index must be between 0 and length() - 1. @return An object value, or null if there is no object at that index.
(int index)
| 380 | * object at that index. |
| 381 | */ |
| 382 | public Object opt(int index) { |
| 383 | return (index < 0 || index >= length()) ? |
| 384 | null : this.myArrayList.get(index); |
| 385 | } |
| 386 | |
| 387 | |
| 388 | /** |
no test coverage detected