uk.co.jezuk.mango.algorithms |
|
Java Source File Name | Type | Comment |
Count.java | Class | Count computes the number of elements in the sequence that
are equal to value . |
CountIf.java | Class | CountIf is similar to Count , but more general.
It computes the number of elements in the sequence which satisfy some condition. |
CountIfNot.java | Class | CountIfNot is the complement of CountIf .
It counts the number of elements in the sequence which fail some condition. |
Find.java | Class | Searchs the sequence travesed by the Iterator for the given value.
Returns the Object , or null if the value
is not found. |
FindIf.java | Class | Searchs the sequence traversed by the Iterator and returns the first
object encountered for which the Predicate returns true .
Returns the Object , or null if the value
is not found. |
FindIfNot.java | Class | Searchs the sequence traversed by the Iterator and returns the first
object encountered for which the Predicate returns false . |
FindPosition.java | Class | Searchs the sequence travesed by the Iterator for the given value.
Returns the index of the value in the collection, or -1
if the value is not found. |
FindPositionIf.java | Class | |
ForEach.java | Class | The algorithm ForEach applies the function fn to
each element in the iterator sequence. |
Intersection.java | Class | |
Partition.java | Class | |
Remove.java | Class | |
RemoveIf.java | Class | |
SymmetricDifference.java | Class | |
Transform.java | Class | The algorith Transform applies the function fn to
each element in the iterator sequence. |
Unique.java | Class | |