net.sf.jga.algorithms |
Provides common algorithm implementations over arrays, collections and other
iterable resources, and iterators.
|
Java Source File Name | Type | Comment |
Filter.java | Class | Algorithms that return a subset of its input. |
Find.java | Class | Algorithms that return an iterator pointing at the first/next element of the input
that meets some condition. |
Merge.java | Class | Algorithms that combine the contents of two inputs. |
Sort.java | Class | Adapts standard java Sort capabilities to the interfaces common to jga.
Copyright © 2006 David A. |
Summarize.java | Class | Algorithms that consume input and produce a single value. |
Transform.java | Class | Algorithms that process the elements of a collection, iteration, or iterable resource,
and present the results.
Copyright © 2002-2006 David A. |
Unique.java | Class | Algorithms that eliminate successive duplicate entries from a collection, iteration,
or iterable resource.
Copyright © 2006 David A. |