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