Colt 1.0.3

Uses of Interface
jal.String.BinaryOperator

Packages that use BinaryOperator
jal.String Algorithms on String arrays; A partial STL port by the C++ Standard Template Library authors. 
 

Uses of BinaryOperator in jal.String
 

Methods in jal.String with parameters of type BinaryOperator
static String Numeric.accumulate(String[] array, int first, int last, String init, BinaryOperator op)
          Generalized accumulation.
static String Numeric.inner_product(String[] array1, String[] array2, int first1, int last1, int first2, String init, BinaryOperator op1, BinaryOperator op2)
          Computes the generalized inner product of two ranges.
static int Numeric.partial_sum(String[] source, String[] dest, int first, int last, int to, BinaryOperator op)
          Computes the generalized partial sums of elements in an input range and assigns them to elements in an output range.
static int Numeric.adjacent_difference(String[] source, String[] dest, int first, int last, int to, BinaryOperator op)
          Computes a binary operation op for each pair of adjacent elements in the input range and assigns the results to an output range.
static void Modification.transform(String[] source1, String[] source2, String[] destination, int first1, int last1, int first2, int to, BinaryOperator f)
          Performs a binary operation on elements of two ranges, assigning the result to elements of another range.
 


Colt 1.0.3

Submit a bug or feature. Check the Colt home page for the latest news.