Examples of removeKey()


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

    public ImmutableByteCharMap newWithoutKey(byte key)
    {
        MutableByteCharMap map = new ByteCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteCharMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

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

    public ImmutableByteDoubleMap newWithoutKey(byte key)
    {
        MutableByteDoubleMap map = new ByteDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteDoubleMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

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

    public ImmutableByteFloatMap newWithoutKey(byte key)
    {
        MutableByteFloatMap map = new ByteFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteFloatMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

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

    public ImmutableByteIntMap newWithoutKey(byte key)
    {
        MutableByteIntMap map = new ByteIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteIntMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

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

    public ImmutableByteLongMap newWithoutKey(byte key)
    {
        MutableByteLongMap map = new ByteLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteLongMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

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

    public ImmutableByteShortMap newWithoutKey(byte key)
    {
        MutableByteShortMap map = new ByteShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteShortMap newWithoutAllKeys(ByteIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.CharBooleanHashMap.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.impl.map.mutable.primitive.CharByteHashMap.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.impl.map.mutable.primitive.CharCharHashMap.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.impl.map.mutable.primitive.CharDoubleHashMap.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
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.