type-safe/src/main/java/software/amazon/swage/collection/ImmutableTypedMap.java [112:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean containsValue(final Object value) {
        for (Map.Entry<Key, Entry> e : this.dataMap.entrySet()) {
            if (e.getValue().getValue().equals(value)) {
                return true;
            }
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



type-safe/src/benchmarks/java/software/amazon/swage/collection/GuavaTypedMap.java [76:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean containsValue(final Object value) {
        for (Map.Entry<Key, Entry> e : this.dataMap.entrySet()) {
            if (e.getValue().getValue().equals(value)) {
                return true;
            }
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



