A sensible default implementation of #subList(int, int). If you override any other methods, you may wish to override #subList(int, int) to forward to this implementation. @since 7.0
(int fromIndex, int toIndex)
| 234 | */ |
| 235 | |
| 236 | @Beta |
| 237 | protected List<E> standardSubList(int fromIndex, int toIndex) { |
| 238 | return Lists.subListImpl(this, fromIndex, toIndex); |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * A sensible definition of {@link #equals(Object)} in terms of {@link #size} |
nothing calls this directly
no test coverage detected