Colt 1.0.1

Uses of Interface
jal.INT.BinaryOperator

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

Uses of BinaryOperator in jal.INT
 

Methods in jal.INT with parameters of type BinaryOperator
static int accumulate(int[] array, int first, int last, int init, BinaryOperator op)
          Generalized accumulation.
static int inner_product(int[] array1, int[] array2, int first1, int last1, int first2, int init, BinaryOperator op1, BinaryOperator op2)
          Computes the generalized inner product of two ranges.
static int partial_sum(int[] source, int[] 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 adjacent_difference(int[] source, int[] 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 transform(int[] source1, int[] source2, int[] 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.1

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