Examples of removeKey()


Examples of com.gs.collections.impl.map.mutable.primitive.DoubleLongHashMap.removeKey()

    public ImmutableDoubleLongMap newWithoutKey(double key)
    {
        MutableDoubleLongMap map = new DoubleLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableDoubleLongMap newWithoutAllKeys(DoubleIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.DoubleShortHashMap.removeKey()

    public ImmutableDoubleShortMap newWithoutKey(double key)
    {
        MutableDoubleShortMap map = new DoubleShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableDoubleShortMap newWithoutAllKeys(DoubleIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatBooleanHashMap.removeKey()

    public ImmutableFloatBooleanMap newWithoutKey(float key)
    {
        MutableFloatBooleanMap map = new FloatBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatBooleanMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatByteHashMap.removeKey()

    public ImmutableFloatByteMap newWithoutKey(float key)
    {
        MutableFloatByteMap map = new FloatByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatByteMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatCharHashMap.removeKey()

    public ImmutableFloatCharMap newWithoutKey(float key)
    {
        MutableFloatCharMap map = new FloatCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatCharMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatDoubleHashMap.removeKey()

    public ImmutableFloatDoubleMap newWithoutKey(float key)
    {
        MutableFloatDoubleMap map = new FloatDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatDoubleMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatFloatHashMap.removeKey()

    public ImmutableFloatFloatMap newWithoutKey(float key)
    {
        MutableFloatFloatMap map = new FloatFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatFloatMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatIntHashMap.removeKey()

    public ImmutableFloatIntMap newWithoutKey(float key)
    {
        MutableFloatIntMap map = new FloatIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatIntMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatLongHashMap.removeKey()

    public ImmutableFloatLongMap newWithoutKey(float key)
    {
        MutableFloatLongMap map = new FloatLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatLongMap newWithoutAllKeys(FloatIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.FloatShortHashMap.removeKey()

    public ImmutableFloatShortMap newWithoutKey(float key)
    {
        MutableFloatShortMap map = new FloatShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableFloatShortMap newWithoutAllKeys(FloatIterable keys)
    {
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.