toString(Container, String).
Static method in class com.objectspace.jgl.algorithms.Printing
Return a string that describes a container.
toString(InputIterator, InputIterator).
Static method in class com.objectspace.jgl.algorithms.Printing
Return a string that describes the contents of the sequence
associated with an iterator.
transform(Container, Container, Container, BinaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse two containers and add the results of invoking a BinaryFunction on
corresponding elements to another container.
transform(Container, Container, OutputIterator, BinaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse two containers and store the results of invoking a BinaryFunction on
corresponding elements into a sequence.
transform(Container, Container, UnaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse a container and add the results of invoking a UnaryFunction on each
element into another container.
transform(Container, OutputIterator, UnaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse a container and store the results of invoking a UnaryFunction on each
element into a sequence.
transform(InputIterator, InputIterator, InputIterator, OutputIterator, BinaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse two sequences and store the results of invoking a BinaryFunction on
corresponding elements into another sequence of the same size.
transform(InputIterator, InputIterator, OutputIterator, UnaryFunction).
Static method in class com.objectspace.jgl.algorithms.Transforming
Traverse a sequence and store the results of invoking a UnaryFunction on each
element into another sequence of the same size.