|
AFF --- A container for numbers (array) by Friederich and Forbriger.
|
Recursive functions to inline raw array operations. More...
#include <rawarfun.h>
Static Public Member Functions | |
| static void | copy (const T *source, T *target) |
| copy all values from source to target More... | |
| static T | product (const T *array) |
| calculate product of all elements More... | |
| static T | sum (const T *array) |
| calculate sum of all elements More... | |
| static void | set (T *array, const T &value) |
| set all elements to value More... | |
| static bool | anysmaller (const T *A, const T *B) |
| true if ony of A is smaller than corresponding B More... | |
| static bool | anylarger (const T *A, const T *B) |
| true if ony of A is larger than corresponding B More... | |
| static T | innerproduct (const T *A, const T *B) |
| calculate inner product More... | |
| static T | strideproduct (const T *A, const T *B) |
| calculate stride product More... | |
Recursive functions to inline raw array operations.
Definition at line 60 of file rawarfun.h.