Package com.gs.collections.impl.map.mutable.primitive

Examples of com.gs.collections.impl.map.mutable.primitive.DoubleCharHashMap$KeySetIterator


    private static final long serialVersionUID = 1L;
    private final MutableDoubleCharMap delegate;

    ImmutableDoubleCharHashMap(DoubleCharMap delegate)
    {
        this.delegate = new DoubleCharHashMap(delegate);
    }
View Full Code Here


        return this.delegate.asLazy();
    }

    public ImmutableDoubleCharMap newWithKeyValue(double key, char value)
    {
        MutableDoubleCharMap map = new DoubleCharHashMap(this.size() + 1);
        map.putAll(this);
        map.put(key, value);
        return map.toImmutable();
    }
View Full Code Here

        return map.toImmutable();
    }

    public ImmutableDoubleCharMap newWithoutKey(double key)
    {
        MutableDoubleCharMap map = new DoubleCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }
View Full Code Here

        return map.toImmutable();
    }

    public ImmutableDoubleCharMap newWithoutAllKeys(DoubleIterable keys)
    {
        MutableDoubleCharMap map = new DoubleCharHashMap(this.size());
        map.putAll(this);
        DoubleIterator iterator = keys.doubleIterator();
        while (iterator.hasNext())
        {
            map.removeKey(iterator.next());
        }
        return map.toImmutable();
    }
View Full Code Here

        }

        public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
        {
            int size = in.readInt();
            MutableDoubleCharMap deserializedMap = new DoubleCharHashMap();

            for (int i = 0; i < size; i++)
            {
                deserializedMap.put(in.readDouble(), in.readChar());
            }

            this.map = deserializedMap;
        }
View Full Code Here

    }

    public ImmutableDoubleCharMap select(DoubleCharPredicate predicate)
    {
        return predicate.accept(this.key1, this.value1) ? DoubleCharHashMap.newWithKeysValues(this.key1, this.value1).toImmutable()
                : new DoubleCharHashMap().toImmutable();
    }
View Full Code Here

                : new DoubleCharHashMap().toImmutable();
    }

    public ImmutableDoubleCharMap reject(DoubleCharPredicate predicate)
    {
        return predicate.accept(this.key1, this.value1) ? new DoubleCharHashMap().toImmutable()
                : DoubleCharHashMap.newWithKeysValues(this.key1, this.value1).toImmutable();
    }
View Full Code Here

TOP

Related Classes of com.gs.collections.impl.map.mutable.primitive.DoubleCharHashMap$KeySetIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.