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

Method iterator

output/java_guava/1.4.17/Multimaps.java:1796–1806  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1794 }
1795
1796 @Override
1797 public Iterator<Entry<K, Collection<V>>> iterator() {
1798 return Maps.asMapEntryIterator(
1799 multimap.keySet(),
1800 new Function<K, Collection<V>>() {
1801 @Override
1802 public Collection<V> apply(K key) {
1803 return multimap.get(key);
1804 }
1805 });
1806 }
1807
1808 @Override
1809 public boolean remove(Object o) {

Callers

nothing calls this directly

Calls 2

asMapEntryIteratorMethod · 0.95
keySetMethod · 0.65

Tested by

no test coverage detected