Package com.gs.collections.api.iterator

Examples of com.gs.collections.api.iterator.LongIterator


        return this;
    }

    public MutableLongObjectMap<V> withoutAllKeys(LongIterable keys)
    {
        LongIterator iterator = keys.longIterator();
        while (iterator.hasNext())
        {
            long item = iterator.next();
            this.removeKey(item);
        }
        return this;
    }
View Full Code Here


    public ImmutableLongFloatMap newWithoutAllKeys(LongIterable keys)
    {
        MutableLongFloatMap map = new LongFloatHashMap(this.size());
        map.putAll(this);
        LongIterator iterator = keys.longIterator();
        while (iterator.hasNext())
        {
            map.removeKey(iterator.next());
        }
        return map.toImmutable();
    }
View Full Code Here

        }

        public boolean removeAll(LongIterable source)
        {
            int oldSize = LongShortHashMap.this.size();
            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                LongShortHashMap.this.removeKey(iterator.next());
            }
            return oldSize != LongShortHashMap.this.size();
        }
View Full Code Here

            return true;
        }

        public boolean containsAll(LongIterable source)
        {
            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                if (!LongShortHashMap.this.containsKey(iterator.next()))
                {
                    return false;
                }
            }
            return true;
View Full Code Here

        public boolean removeAll(LongIterable source)
        {
            int oldSize = LongLongHashMap.this.size();

            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                this.remove(iterator.next());
            }
            return oldSize != LongLongHashMap.this.size();
        }
View Full Code Here

        }

        public boolean removeAll(LongIterable source)
        {
            int oldSize = LongByteHashMap.this.size();
            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                LongByteHashMap.this.removeKey(iterator.next());
            }
            return oldSize != LongByteHashMap.this.size();
        }
View Full Code Here

            return true;
        }

        public boolean containsAll(LongIterable source)
        {
            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                if (!LongByteHashMap.this.containsKey(iterator.next()))
                {
                    return false;
                }
            }
            return true;
View Full Code Here

    {
        if (this.isEmpty())
        {
            throw new NoSuchElementException();
        }
        LongIterator iterator = this.longIterator();
        long max = iterator.next();
        while (iterator.hasNext())
        {
            long value = iterator.next();
            if (max < value)
            {
                max = value;
            }
        }
View Full Code Here

    {
        if (this.isEmpty())
        {
            throw new NoSuchElementException();
        }
        LongIterator iterator = this.longIterator();
        long min = iterator.next();
        while (iterator.hasNext())
        {
            long value = iterator.next();
            if (value < min)
            {
                min = value;
            }
        }
View Full Code Here

        }

        public boolean removeAll(LongIterable source)
        {
            int oldSize = LongLongHashMap.this.size();
            LongIterator iterator = source.longIterator();
            while (iterator.hasNext())
            {
                LongLongHashMap.this.removeKey(iterator.next());
            }
            return oldSize != LongLongHashMap.this.size();
        }
View Full Code Here

TOP

Related Classes of com.gs.collections.api.iterator.LongIterator

Copyright © 2018 www.massapicom. 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.