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