type-safe/src/benchmarks/java/software/amazon/swage/collection/GuavaTypedMap.java [70:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public boolean containsKey(final Key<?> key) {
        return this.dataMap.containsKey(key);
    }

    @Override
    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/main/java/software/amazon/swage/collection/ImmutableTypedMap.java [106:118]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public boolean containsKey(final Key<?> key) {
        return this.dataMap.containsKey(key);
    }

    @Override
    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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



