(int fromIndex, int toIndex)
| 891 | } |
| 892 | |
| 893 | @Override |
| 894 | public List<T> subList(int fromIndex, int toIndex) { |
| 895 | checkPositionIndexes(fromIndex, toIndex, size()); |
| 896 | return reverse(forwardList.subList(reversePosition(toIndex), reversePosition(fromIndex))); |
| 897 | } |
| 898 | |
| 899 | @Override |
| 900 | public Iterator<T> iterator() { |
no test coverage detected