|
| template<class InputRange, class OutputIterator> |
| OutputIterator | copy (const InputRange &range, OutputIterator result) |
| | copy implementation
|
| template<class BidirectionalRange1, class BidirectionalIterator2> |
| BidirectionalIterator2 | copy_backward (BidirectionalRange1 &range1, BidirectionalIterator2 result) |
| | copy implementation
|
| template<class BidirectionalRange1, class BidirectionalIterator2> |
| BidirectionalIterator2 | copy_backward (const BidirectionalRange1 &range1, BidirectionalIterator2 result) |
| | copy implementation
|
| template<class InputIter, class Size, class OutputIter> |
| std::pair< InputIter, OutputIter > | copy_n (InputIter first, Size count, OutputIter result) |
| | copy implementation
|
| template<typename I, typename F> |
| std::pair< I, F > | copy_bounded (I first, I last, F result_first, F result_last) |
| | copy implementation
|
| template<typename I, typename O, typename T> |
| std::pair< I, O > | copy_sentinal (I f, O o, const T &x) |
| | copy implementation
|
| template<typename I, typename O> |
| std::pair< I, O > | copy_sentinal (I f, O o) |
| | copy implementation
|