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

Method asMapEntryIterator

corpus/java/training/guava/collect/Maps.java:881–889  ·  view source on GitHub ↗
(
      Set<K> set, final Function<? super K, V> function)

Source from the content-addressed store, hash-verified

879 }
880
881 static <K, V> Iterator<Entry<K, V>> asMapEntryIterator(
882 Set<K> set, final Function<? super K, V> function) {
883 return new TransformedIterator<K, Entry<K, V>>(set.iterator()) {
884 @Override
885 Entry<K, V> transform(final K key) {
886 return immutableEntry(key, function.apply(key));
887 }
888 };
889 }
890
891 private static class SortedAsMapView<K, V> extends AsMapView<K, V> implements SortedMap<K, V> {
892

Callers 5

iteratorMethod · 0.95
iteratorMethod · 0.95
iteratorMethod · 0.95
iteratorMethod · 0.45
entryIteratorMethod · 0.45

Calls 1

iteratorMethod · 0.65

Tested by

no test coverage detected