Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
algorithm.hpp File Reference
#include <boost/move/detail/config_begin.hpp>
#include <boost/move/utility_core.hpp>
#include <boost/move/iterator.hpp>
#include <boost/detail/no_exceptions_support.hpp>
#include <algorithm>
#include <memory>
#include <boost/move/detail/config_end.hpp>
Include dependency graph for algorithm.hpp:
This graph shows which files directly or indirectly include this file:

Namespaces

 boost
 Duration formatting facet for input.
 

Functions

template<typename I , typename O >
boost::move (I f, I l, O result)
 Effects: Moves elements in the range [first,last) into the range [result,result + (last - first)) starting from first and proceeding to last. More...
 
template<typename I , typename O >
boost::move_backward (I f, I l, O result)
 Effects: Moves elements in the range [first,last) into the range [result - (last-first),result) starting from last - 1 and proceeding to first. More...
 
template<typename I , typename F >
boost::uninitialized_move (I f, I l, F r)
 defined(BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE) More...
 
template<typename I , typename F >
boost::uninitialized_copy_or_move (I f, I l, F r)
 Effects: More...
 
template<typename I , typename F >
boost::copy_or_move (I f, I l, F r)
 Effects: More...