An implementation of Map#containsValue.
(Map<?, ?> map, @Nullable Object value)
| 3531 | * An implementation of {@link Map#containsValue}. |
| 3532 | */ |
| 3533 | static boolean containsValueImpl(Map<?, ?> map, @Nullable Object value) { |
| 3534 | return Iterators.contains(valueIterator(map.entrySet().iterator()), value); |
| 3535 | } |
| 3536 | |
| 3537 | /** |
| 3538 | * Implements {@code Collection.contains} safely for forwarding collections of |
no test coverage detected