|
Colt 1.0.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BinaryOperator | |
jal.SHORT | Algorithms on short arrays; A partial STL port by the C++ Standard Template Library authors. |
Uses of BinaryOperator in jal.SHORT |
Methods in jal.SHORT with parameters of type BinaryOperator | |
static short |
Numeric.accumulate(short[] array,
int first,
int last,
short init,
BinaryOperator op)
Generalized accumulation. |
static short |
Numeric.inner_product(short[] array1,
short[] array2,
int first1,
int last1,
int first2,
short init,
BinaryOperator op1,
BinaryOperator op2)
Computes the generalized inner product of two ranges. |
static int |
Numeric.partial_sum(short[] source,
short[] 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(short[] source,
short[] 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(short[] source1,
short[] source2,
short[] 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.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |