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

Method containsValueImpl

output/java_guava/1.4.19/Maps.java:3586–3588  ·  view source on GitHub ↗

An implementation of Map#containsValue.

(Map<?, ?> map, @Nullable Object value)

Source from the content-addressed store, hash-verified

3584
3585
3586 static boolean containsValueImpl(Map<?, ?> map, @Nullable Object value) {
3587 return Iterators.contains(valueIterator(map.entrySet().iterator()), value);
3588 }
3589
3590 /**
3591 * Implements {@code Collection.contains} safely for forwarding collections of

Callers 1

standardContainsValueMethod · 0.95

Calls 4

containsMethod · 0.95
valueIteratorMethod · 0.95
iteratorMethod · 0.65
entrySetMethod · 0.65

Tested by

no test coverage detected