MCPcopy Create free account
hub / github.com/antlr/codebuff / standardSubList

Method standardSubList

output/java_guava/1.4.19/ForwardingList.java:236–239  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

subListImplMethod · 0.95

Tested by

no test coverage detected