An implementation of Map#containsValue.
(Map<?, ?> map, @Nullable Object value)
| 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 |
no test coverage detected