MCPcopy
hub / github.com/google/guava / forEach

Method forEach

guava/src/com/google/common/collect/Maps.java:1085–1088  ·  view source on GitHub ↗
(BiConsumer<? super K, ? super V> action)

Source from the content-addressed store, hash-verified

1083 }
1084
1085 @Override
1086 public void forEach(BiConsumer<? super K, ? super V> action) {
1087 set.forEach(k -> action.accept(k, function.apply(k)));
1088 }
1089
1090 @Override
1091 Iterator<Entry<K, V>> descendingEntryIterator() {

Callers

nothing calls this directly

Calls 3

forEachMethod · 0.65
acceptMethod · 0.65
applyMethod · 0.65

Tested by

no test coverage detected