Examples of removeKey()


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

    public ImmutableIntLongMap newWithoutKey(int key)
    {
        MutableIntLongMap map = new IntLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableIntShortMap newWithoutKey(int key)
    {
        MutableIntShortMap map = new IntShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableLongBooleanMap newWithoutKey(long key)
    {
        MutableLongBooleanMap map = new LongBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongBooleanMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongByteMap newWithoutKey(long key)
    {
        MutableLongByteMap map = new LongByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongByteMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongCharMap newWithoutKey(long key)
    {
        MutableLongCharMap map = new LongCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongCharMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongDoubleMap newWithoutKey(long key)
    {
        MutableLongDoubleMap map = new LongDoubleHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongDoubleMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongFloatMap newWithoutKey(long key)
    {
        MutableLongFloatMap map = new LongFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongFloatMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongIntMap newWithoutKey(long key)
    {
        MutableLongIntMap map = new LongIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongIntMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongLongMap newWithoutKey(long key)
    {
        MutableLongLongMap map = new LongLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongLongMap newWithoutAllKeys(LongIterable keys)
    {
View Full Code Here

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

    public ImmutableLongShortMap newWithoutKey(long key)
    {
        MutableLongShortMap map = new LongShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableLongShortMap newWithoutAllKeys(LongIterable 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.