MCPcopy Index your code
hub / github.com/antlr/codebuff / next

Method next

output/java_guava/1.4.17/ImmutableMultiset.java:220–229  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

218 }
219
220 @Override
221 public E next() {
222 if (remaining <= 0) {
223 Entry<E> entry = entryIterator.next();
224 element = entry.getElement();
225 remaining = entry.getCount();
226 }
227 remaining--;
228 return element;
229 }
230 };
231 }
232

Callers

nothing calls this directly

Calls 3

nextMethod · 0.65
getElementMethod · 0.65
getCountMethod · 0.65

Tested by

no test coverage detected