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