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

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


    /**
     * Creates a deferred filtering long iterable for the specified long iterable.
     */
    public static LazyLongIterable select(LongIterable iterable, LongPredicate predicate)
    {
        return new SelectLongIterable(iterable, predicate);
    }
View Full Code Here


            return !this.anySatisfy(predicate);
        }

        public LazyLongIterable select(LongPredicate predicate)
        {
            return new SelectLongIterable(this, predicate);
        }
View Full Code Here

            return new SelectLongIterable(this, predicate);
        }

        public LazyLongIterable reject(LongPredicate predicate)
        {
            return new SelectLongIterable(this, LongPredicates.not(predicate));
        }
View Full Code Here

TOP

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

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.