Examples of removeKey()


Examples of com.gs.collections.api.map.primitive.MutableFloatFloatMap.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.api.map.primitive.MutableFloatIntMap.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.api.map.primitive.MutableFloatLongMap.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.api.map.primitive.MutableFloatShortMap.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

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

    public ImmutableIntBooleanMap newWithoutKey(int key)
    {
        MutableIntBooleanMap map = new IntBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntBooleanMap newWithoutAllKeys(IntIterable keys)
    {
View Full Code Here

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

    public ImmutableIntByteMap newWithoutKey(int key)
    {
        MutableIntByteMap map = new IntByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntByteMap newWithoutAllKeys(IntIterable keys)
    {
View Full Code Here

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

    public ImmutableIntCharMap newWithoutKey(int key)
    {
        MutableIntCharMap map = new IntCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntCharMap newWithoutAllKeys(IntIterable keys)
    {
View Full Code Here

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

    public ImmutableIntDoubleMap newWithoutKey(int key)
    {
        MutableIntDoubleMap map = new IntDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntDoubleMap newWithoutAllKeys(IntIterable keys)
    {
View Full Code Here

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

    public ImmutableIntFloatMap newWithoutKey(int key)
    {
        MutableIntFloatMap map = new IntFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntFloatMap newWithoutAllKeys(IntIterable keys)
    {
View Full Code Here

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

    public ImmutableIntIntMap newWithoutKey(int key)
    {
        MutableIntIntMap map = new IntIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableIntIntMap newWithoutAllKeys(IntIterable 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.