#include <vctFixedSizeVectorRecursiveEngines.h>
for fixed size vectors.
This class uses template specialization to perform unary vector operations of the form
where
is the output vector, and
is the input vector both of a fixed size, determined at compilation time, op stands for the a unary operation performed elementwise on
, and whose result is stored elementwise into
.
| _elementOperationType | The type of the unary operation. |
Definition at line 456 of file vctFixedSizeVectorRecursiveEngines.h.
| static void vctFixedSizeVectorRecursiveEngines< _size >::VoVi< _elementOperationType >::Unfold | ( | _outputVectorType & | outputVector, | |
| const _inputVectorType & | inputVector | |||
| ) | [inline, static] |
Unfold the recursion. Performs the operation _elementOperationType elementwise on the last elements of the input vector and call Unfold for the _size - 1 elements left (i.e. unfold the recursive calls).
| outputVector | The output vector. | |
| inputVector | The input vector. |
Definition at line 471 of file vctFixedSizeVectorRecursiveEngines.h.