Table of Contents
Previous Section Next Section

copy

template <class InIter, class OutIter>    OutIter copy(InIter start, InIter end, OutIter result);

The copy( ) algorithm copies a sequence beginning at start and ending with end, putting the result into the sequence pointed to by result. It returns an iterator to the end of the resulting sequence. The range to be copied must not overlap with result.


Table of Contents
Previous Section Next Section