MCPcopy Create free account
hub / github.com/LFYSec/MScan / forEach

Method forEach

src/main/java/pascal/taie/util/collection/MultiMap.java:156–156  ·  view source on GitHub ↗

Performs the given action for all key-value pairs contained in this multimap.

(@Nonnull BiConsumer<K, V> action)

Source from the content-addressed store, hash-verified

154 * Performs the given action for all key-value pairs contained in this multimap.
155 */
156 default void forEach(@Nonnull BiConsumer<K, V> action) {
157 Objects.requireNonNull(action);
158 entrySet().forEach(entry ->
159 action.accept(entry.getKey(), entry.getValue()));

Callers 15

summarizeStyleViolationsFunction · 0.65
testIRBuilderMethod · 0.65
testDefUseMethod · 0.65
testFunctionMethod · 0.65
testInterfaceMethod · 0.65
testMultiStatementMethod · 0.65
testWithArgsMethod · 0.65
testCaptureMethod · 0.65
printMethod · 0.65
testWorldBuilderMethod · 0.65
examineJClassMethod · 0.65
testMethod · 0.65

Calls

no outgoing calls

Tested by 15

testIRBuilderMethod · 0.52
testDefUseMethod · 0.52
testFunctionMethod · 0.52
testInterfaceMethod · 0.52
testMultiStatementMethod · 0.52
testWithArgsMethod · 0.52
testCaptureMethod · 0.52
printMethod · 0.52
testWorldBuilderMethod · 0.52
examineJClassMethod · 0.52
testMethod · 0.52
testStmtIndexerMethod · 0.52