Examples of removeKey()


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

    public ImmutableShortBooleanMap newWithoutKey(short key)
    {
        MutableShortBooleanMap map = new ShortBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortBooleanMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortByteMap newWithoutKey(short key)
    {
        MutableShortByteMap map = new ShortByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortByteMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortCharMap newWithoutKey(short key)
    {
        MutableShortCharMap map = new ShortCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortCharMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortDoubleMap newWithoutKey(short key)
    {
        MutableShortDoubleMap map = new ShortDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortDoubleMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortFloatMap newWithoutKey(short key)
    {
        MutableShortFloatMap map = new ShortFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortFloatMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortIntMap newWithoutKey(short key)
    {
        MutableShortIntMap map = new ShortIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortIntMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortLongMap newWithoutKey(short key)
    {
        MutableShortLongMap map = new ShortLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortLongMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableShortShortMap newWithoutKey(short key)
    {
        MutableShortShortMap map = new ShortShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortShortMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

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

    public ImmutableByteBooleanMap newWithoutKey(byte key)
    {
        MutableByteBooleanMap map = new ByteBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableByteByteMap newWithoutKey(byte key)
    {
        MutableByteByteMap map = new ByteByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableByteByteMap newWithoutAllKeys(ByteIterable 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.