#include <adobe/config.hpp>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
#include <boost/range/size.hpp>
#include <algorithm>
#include <iterator>
Go to the source code of this file.
| 
Namespaces | 
| namespace | adobe | 
| 
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) |