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

Method iterator

output/java_guava/1.4.17/Multisets.java:992–1000  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

990 }
991
992 @Override
993 public Iterator<E> iterator() {
994 return new TransformedIterator<Entry<E>, E>(multiset().entrySet().iterator()) {
995 @Override
996 E transform(Entry<E> entry) {
997 return entry.getElement();
998 }
999 };
1000 }
1001
1002 @Override
1003 public boolean remove(Object o) {

Callers

nothing calls this directly

Calls 3

multisetMethod · 0.95
iteratorMethod · 0.65
entrySetMethod · 0.65

Tested by

no test coverage detected