(int fromIndex, int toIndex)
| 921 | } |
| 922 | |
| 923 | @Override |
| 924 | public List<T> subList(int fromIndex, int toIndex) { |
| 925 | checkPositionIndexes(fromIndex, toIndex, size()); |
| 926 | return reverse(forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex))); |
| 927 | } |
| 928 | |
| 929 | @Override |
| 930 | public Iterator<T> iterator() { |
no test coverage detected