Examples of removeKey()


Examples of com.gs.collections.impl.map.mutable.primitive.LongCharHashMap.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.impl.map.mutable.primitive.LongDoubleHashMap.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.impl.map.mutable.primitive.LongFloatHashMap.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.impl.map.mutable.primitive.LongIntHashMap.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.impl.map.mutable.primitive.LongLongHashMap.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.impl.map.mutable.primitive.LongShortHashMap.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

Examples of com.gs.collections.impl.map.mutable.primitive.ShortBooleanHashMap.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.impl.map.mutable.primitive.ShortByteHashMap.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.impl.map.mutable.primitive.ShortCharHashMap.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.impl.map.mutable.primitive.ShortDoubleHashMap.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
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.