Package com.gs.collections.api.block.predicate.primitive

Examples of com.gs.collections.api.block.predicate.primitive.LongFloatPredicate


        public boolean retainAll(LongIterable source)
        {
            int oldSize = this.size();
            final LongSet sourceSet = source instanceof LongSet ? (LongSet) source : source.toSet();
            LongFloatHashMap retained = LongFloatHashMap.this.select(new LongFloatPredicate()
            {
                public boolean accept(long key, float value)
                {
                    return sourceSet.contains(key);
                }
View Full Code Here


        public boolean retainAll(FloatIterable source)
        {
            int oldSize = this.size();
            final FloatSet sourceSet = source instanceof FloatSet ? (FloatSet) source : source.toSet();
            LongFloatHashMap retained = LongFloatHashMap.this.select(new LongFloatPredicate()
            {
                public boolean accept(long key, float value)
                {
                    return sourceSet.contains(value);
                }
View Full Code Here

TOP

Related Classes of com.gs.collections.api.block.predicate.primitive.LongFloatPredicate

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.