|
Functions |
template<class InputRange , class OutputIterator > |
OutputIterator | copy (const InputRange &range, OutputIterator result) |
template<class BidirectionalRange1 , class BidirectionalIterator2 > |
BidirectionalIterator2 | copy_backward (BidirectionalRange1 &range1, BidirectionalIterator2 result) |
template<class BidirectionalRange1 , class BidirectionalIterator2 > |
BidirectionalIterator2 | copy_backward (const BidirectionalRange1 &range1, BidirectionalIterator2 result) |
template<typename I , typename F > |
std::pair< I, F > | copy_bounded (I first, I last, F result_first, F result_last) |
template<class InputIter , class Size , class OutputIter > |
std::pair< InputIter, OutputIter > | copy_n (InputIter first, Size count, OutputIter result) |
template<typename I , typename O , typename T > |
std::pair< I, O > | copy_sentinal (I f, O o, const T &x) |
template<typename I , typename O > |
std::pair< I, O > | copy_sentinal (I f, O o) |
Detailed Description
- See also:
-
Function Documentation
OutputIterator adobe::copy |
( |
const InputRange & |
range, |
|
|
OutputIterator |
result |
|
) |
| |
copy implementation
Definition at line 43 of file copy.hpp.
BidirectionalIterator2 adobe::copy_backward |
( |
BidirectionalRange1 & |
range1, |
|
|
BidirectionalIterator2 |
result |
|
) |
| |
copy implementation
Definition at line 54 of file copy.hpp.
BidirectionalIterator2 adobe::copy_backward |
( |
const BidirectionalRange1 & |
range1, |
|
|
BidirectionalIterator2 |
result |
|
) |
| |
copy implementation
Definition at line 65 of file copy.hpp.
std::pair<I, F> adobe::copy_bounded |
( |
I |
first, |
|
|
I |
last, |
|
|
F |
result_first, |
|
|
F |
result_last |
|
) |
| |
copy implementation
Definition at line 177 of file copy.hpp.
std::pair<InputIter, OutputIter> adobe::copy_n |
( |
InputIter |
first, |
|
|
Size |
count, |
|
|
OutputIter |
result |
|
) |
| |
copy implementation
Definition at line 117 of file copy.hpp.
std::pair<I, O> adobe::copy_sentinal |
( |
I |
f, |
|
|
O |
o, |
|
|
const T & |
x |
|
) |
| |
copy implementation
Definition at line 194 of file copy.hpp.
std::pair<I, O> adobe::copy_sentinal |
( |
I |
f, |
|
|
O |
o |
|
) |
| |
copy implementation
Definition at line 212 of file copy.hpp.
|