AFF --- A container for numbers (array) by Friederich and Forbriger.
|
copy values (deep copy) from other array of convertible type
This member function reads the element values of another array of same shape and applies them to this array. In fact the shape needs not be the same. The copy is done through sequential access and as most number as possible will be copied in increasing memory address order.
Example:
B
will preserve its shape but is filled with the contents of A
(which are not where interesting in this example). Changes applied to the contents of B will not affect the contents of A.
a | other container with element type convertible to element type of this array and appropriate stepper class |
Definition at line 487 of file array.h.
References aff::deepcopy().
Referenced by aff::ConstArray< T >::copyout().