AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ copy()

template<typename T , int I>
static void aff::util::Inline< T, I >::copy ( const T *  source,
T *  target 
)
inlinestatic

copy all values from source to target

Definition at line 63 of file rawarfun.h.

64  {
65  target[I-1]=source[I-1];
66  Inline<T,I-1>::copy(source, target);
67  }
static void copy(const T *source, T *target)
copy all values from source to target
Definition: rawarfun.h:63