(int fromIndex, int toIndex)
| 682 | } |
| 683 | |
| 684 | @Override |
| 685 | public List<Long> subList(int fromIndex, int toIndex) { |
| 686 | int size = size(); |
| 687 | checkPositionIndexes(fromIndex, toIndex, size); |
| 688 | if (fromIndex == toIndex) { |
| 689 | return Collections.emptyList(); |
| 690 | } |
| 691 | return new LongArrayAsList(array, start + fromIndex, start + toIndex); |
| 692 | } |
| 693 | |
| 694 | @Override |
| 695 | public boolean equals(@Nullable Object object) { |
nothing calls this directly
no test coverage detected