Examples of MutableDoubleDoubleMap


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

        return this.delegate.asLazy();
    }

    public ImmutableDoubleDoubleMap newWithKeyValue(double key, double value)
    {
        MutableDoubleDoubleMap map = new DoubleDoubleHashMap(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.MutableDoubleDoubleMap

        return map.toImmutable();
    }

    public ImmutableDoubleDoubleMap newWithoutKey(double key)
    {
        MutableDoubleDoubleMap map = new DoubleDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }
View Full Code Here

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

        return map.toImmutable();
    }

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

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

        }

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

            for (int i = 0; i < size; i++)
            {
                deserializedMap.put(in.readDouble(), 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.