Package com.gs.collections.impl.lazy.primitive

Examples of com.gs.collections.impl.lazy.primitive.SelectFloatIterable


    /**
     * Creates a deferred filtering float iterable for the specified float iterable.
     */
    public static LazyFloatIterable select(FloatIterable iterable, FloatPredicate predicate)
    {
        return new SelectFloatIterable(iterable, predicate);
    }
View Full Code Here


            return !this.anySatisfy(predicate);
        }

        public LazyFloatIterable select(FloatPredicate predicate)
        {
            return new SelectFloatIterable(this, predicate);
        }
View Full Code Here

            return new SelectFloatIterable(this, predicate);
        }

        public LazyFloatIterable reject(FloatPredicate predicate)
        {
            return new SelectFloatIterable(this, FloatPredicates.not(predicate));
        }
View Full Code Here

TOP

Related Classes of com.gs.collections.impl.lazy.primitive.SelectFloatIterable

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.