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

Method next

output/java_guava/1.4.17/TreeMultiset.java:438–451  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

436 }
437
438 @Override
439 public Entry<E> next() {
440 if (!hasNext()) {
441 throw new NoSuchElementException();
442 }
443 Entry<E> result = wrapEntry(current);
444 prevEntry = result;
445 if (current.succ == header) {
446 current = null;
447 } else {
448 current = current.succ;
449 }
450 return result;
451 }
452
453 @Override
454 public void remove() {

Callers

nothing calls this directly

Calls 2

hasNextMethod · 0.95
wrapEntryMethod · 0.95

Tested by

no test coverage detected