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

◆ copyout()

template<class T >
Series< T > aff::Series< T >::copyout ( ) const

create a (deep) copy of this

create a copy of this array

Definition at line 426 of file series.h.

427  {
428  Tcontainer copy(this->first(),this->last());
429  copy.copyin(*this);
430  return(copy);
431  }
Series< T > Tcontainer
Type of this array.
Definition: series.h:273
const Tsubscript & first() const
return first legal index
Definition: linearshape.h:105
const Tsubscript & last() const
return last legal index
Definition: linearshape.h:107