Returns an implementation of List#listIterator(int).
(List<E> list, int index)
| 1146 | |
| 1147 | |
| 1148 | static <E> ListIterator<E> listIteratorImpl(List<E> list, int index) { |
| 1149 | return new AbstractListWrapper<E>(list).listIterator(index); |
| 1150 | } |
| 1151 | |
| 1152 | /** |
| 1153 | * An implementation of {@link List#subList(int, int)}. |
no test coverage detected