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

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


    /**
     * Creates a deferred filtering short iterable for the specified short iterable.
     */
    public static LazyShortIterable select(ShortIterable iterable, ShortPredicate predicate)
    {
        return new SelectShortIterable(iterable, predicate);
    }
View Full Code Here


            return !this.anySatisfy(predicate);
        }

        public LazyShortIterable select(ShortPredicate predicate)
        {
            return new SelectShortIterable(this, predicate);
        }
View Full Code Here

            return new SelectShortIterable(this, predicate);
        }

        public LazyShortIterable reject(ShortPredicate predicate)
        {
            return new SelectShortIterable(this, ShortPredicates.not(predicate));
        }
View Full Code Here

TOP

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

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.