Package org.apache.commons.functor.core.algorithm

Various algorithm-esque functors.

See:
          Description

Class Summary
DoUntil Do-until algorithm (test after).
DoWhile Do-while algorithm (test after).
FindWithinGenerator<E> Return the first Object in a Generator matching a UnaryPredicate.
FoldLeft<T> Functional left-fold algorithm against the elements of a Generator.
FoldRight<T> Functional right-fold algorithm against the elements of a Generator.
GeneratorContains<T> Tests whether a Generator contains an element that matches a UnaryPredicate.
IndexOfInGenerator<T> Return the index of the first Object in a Generator matching a UnaryPredicate, or -1 if not found.
InPlaceTransform<T> Implements an in-place transformation of a ListIterator's contents.
RecursiveEvaluation Tail recursion for functions.
RemoveMatching<T> Remove elements from left Iterator that match right UnaryPredicate.
RetainMatching<T> Retain elements in left Iterator that match right UnaryPredicate.
UntilDo Until-do algorithm (test before).
WhileDo While-do algorithm (test before).
 

Package org.apache.commons.functor.core.algorithm Description

Various algorithm-esque functors.



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.