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

Method containsValueImpl

output/java_guava/1.4.17/Maps.java:3582–3584  ·  view source on GitHub ↗

An implementation of Map#containsValue.

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

Source from the content-addressed store, hash-verified

3580
3581
3582 static boolean containsValueImpl(Map<?, ?> map, @Nullable Object value) {
3583 return Iterators.contains(valueIterator(map.entrySet().iterator()), value);
3584 }
3585
3586 /**
3587 * 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