Examples of removeKey()


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

    public ImmutableCharFloatMap newWithoutKey(char key)
    {
        MutableCharFloatMap map = new CharFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableCharFloatMap newWithoutAllKeys(CharIterable keys)
    {
View Full Code Here

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

    public ImmutableCharIntMap newWithoutKey(char key)
    {
        MutableCharIntMap map = new CharIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableCharIntMap newWithoutAllKeys(CharIterable keys)
    {
View Full Code Here

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

    public ImmutableCharLongMap newWithoutKey(char key)
    {
        MutableCharLongMap map = new CharLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableCharLongMap newWithoutAllKeys(CharIterable keys)
    {
View Full Code Here

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

    public ImmutableCharShortMap newWithoutKey(char key)
    {
        MutableCharShortMap map = new CharShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableCharShortMap newWithoutAllKeys(CharIterable keys)
    {
View Full Code Here

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

    public ImmutableDoubleBooleanMap newWithoutKey(double key)
    {
        MutableDoubleBooleanMap map = new DoubleBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableDoubleByteMap newWithoutKey(double key)
    {
        MutableDoubleByteMap map = new DoubleByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

Examples of com.gs.collections.impl.map.mutable.primitive.DoubleCharHashMap.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.impl.map.mutable.primitive.DoubleDoubleHashMap.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.impl.map.mutable.primitive.DoubleFloatHashMap.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.impl.map.mutable.primitive.DoubleIntHashMap.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
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.