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

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


    /**
     * Creates a deferred filtering double iterable for the specified double iterable.
     */
    public static LazyDoubleIterable select(DoubleIterable iterable, DoublePredicate predicate)
    {
        return new SelectDoubleIterable(iterable, predicate);
    }
View Full Code Here


            return !this.anySatisfy(predicate);
        }

        public LazyDoubleIterable select(DoublePredicate predicate)
        {
            return new SelectDoubleIterable(this, predicate);
        }
View Full Code Here

            return new SelectDoubleIterable(this, predicate);
        }

        public LazyDoubleIterable reject(DoublePredicate predicate)
        {
            return new SelectDoubleIterable(this, DoublePredicates.not(predicate));
        }
View Full Code Here

TOP

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

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.