Examples of removeKey()


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

    public ImmutableIntBooleanMap newWithoutKey(int key)
    {
        MutableIntBooleanMap map = new IntBooleanHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableIntByteMap newWithoutKey(int key)
    {
        MutableIntByteMap map = new IntByteHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableIntCharMap newWithoutKey(int key)
    {
        MutableIntCharMap map = new IntCharHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

        MutableIntDoubleMap map = new IntDoubleHashMap(this.size());
        map.putAll(this);
        IntIterator iterator = keys.intIterator();
        while (iterator.hasNext())
        {
            map.removeKey(iterator.next());
        }
        return map.toImmutable();
    }

    public int size()
View Full Code Here

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

    public ImmutableIntFloatMap newWithoutKey(int key)
    {
        MutableIntFloatMap map = new IntFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

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

    public ImmutableIntIntMap newWithoutKey(int key)
    {
        MutableIntIntMap map = new IntIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

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

Examples of com.gs.collections.impl.map.mutable.primitive.IntLongHashMap.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.impl.map.mutable.primitive.IntShortHashMap.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.impl.map.mutable.primitive.LongBooleanHashMap.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.impl.map.mutable.primitive.LongByteHashMap.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
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.