STL functions
copy
Copies the elements in the range [first, last)
, to another range begining at d_first
.
The behaviour of the copy is equivalent to:
The behaviour is undefined if d_first
is in the range [first, last)
.
Copies the elements in the range [first, last)
, to another range begining at d_first
.
The behaviour of the copy is equivalent to:
The behaviour is undefined if d_first
is in the range [first, last)
.