Examples of removeKey()


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

    public ImmutableCharBooleanMap newWithoutKey(char key)
    {
        MutableCharBooleanMap map = new CharBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableCharByteMap newWithoutKey(char key)
    {
        MutableCharByteMap map = new CharByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableCharCharMap newWithoutKey(char key)
    {
        MutableCharCharMap map = new CharCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableCharDoubleMap newWithoutKey(char key)
    {
        MutableCharDoubleMap map = new CharDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

Examples of com.gs.collections.api.map.primitive.MutableCharFloatMap.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.api.map.primitive.MutableCharIntMap.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.api.map.primitive.MutableCharLongMap.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.api.map.primitive.MutableCharShortMap.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.api.map.primitive.MutableDoubleBooleanMap.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.api.map.primitive.MutableDoubleByteMap.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
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.