Examples of MutableCharDoubleMap


Examples of com.gs.collections.api.map.primitive.MutableCharDoubleMap

        return this.delegate.asLazy();
    }

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

Examples of com.gs.collections.api.map.primitive.MutableCharDoubleMap

        return map.toImmutable();
    }

    public ImmutableCharDoubleMap newWithoutKey(char key)
    {
        MutableCharDoubleMap map = new CharDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableCharDoubleMap

        return map.toImmutable();
    }

    public ImmutableCharDoubleMap newWithoutAllKeys(CharIterable keys)
    {
        MutableCharDoubleMap map = new CharDoubleHashMap(this.size());
        map.putAll(this);
        CharIterator iterator = keys.charIterator();
        while (iterator.hasNext())
        {
            map.removeKey(iterator.next());
        }
        return map.toImmutable();
    }
View Full Code Here

Examples of com.gs.collections.api.map.primitive.MutableCharDoubleMap

        }

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

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

            this.map = deserializedMap;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.