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