MCPcopy
hub / github.com/google/guava / get

Method get

guava/src/com/google/common/collect/FluentIterable.java:295–298  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

293 /* lazily generate the iterators on each input only as needed */
294 new AbstractIndexedListIterator<Iterator<? extends T>>(inputs.length) {
295 @Override
296 public Iterator<? extends T> get(int i) {
297 return inputs[i].iterator();
298 }
299 });
300 }
301 };

Callers

nothing calls this directly

Calls 3

getMethod · 0.95
getDelegateMethod · 0.95
iteratorMethod · 0.65

Tested by

no test coverage detected