(int index)
| 636 | } |
| 637 | |
| 638 | @Override |
| 639 | public Long get(int index) { |
| 640 | checkElementIndex(index, size()); |
| 641 | return array[start + index]; |
| 642 | } |
| 643 | |
| 644 | @Override |
| 645 | public boolean contains(Object target) { |
nothing calls this directly
no test coverage detected