Examples of removeKey()


Examples of com.gs.collections.api.map.primitive.MutableDoubleCharMap.removeKey()

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

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

Examples of com.gs.collections.api.map.primitive.MutableDoubleDoubleMap.removeKey()

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

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

Examples of com.gs.collections.api.map.primitive.MutableDoubleFloatMap.removeKey()

    public ImmutableDoubleFloatMap newWithoutKey(double key)
    {
        MutableDoubleFloatMap map = new DoubleFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

Examples of com.gs.collections.api.map.primitive.MutableDoubleIntMap.removeKey()

    public ImmutableDoubleIntMap newWithoutKey(double key)
    {
        MutableDoubleIntMap map = new DoubleIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

Examples of com.gs.collections.api.map.primitive.MutableDoubleLongMap.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.api.map.primitive.MutableDoubleShortMap.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.api.map.primitive.MutableFloatBooleanMap.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.api.map.primitive.MutableFloatByteMap.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.api.map.primitive.MutableFloatCharMap.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.api.map.primitive.MutableFloatDoubleMap.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
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.