1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_RANGE_ALGORITHM_EXT_PUSH_BACK_HPP_INCLUDED
- #define BOOST_RANGE_ALGORITHM_EXT_PUSH_BACK_HPP_INCLUDED
- #include <boost/range/config.hpp>
- #include <boost/range/concepts.hpp>
- #include <boost/range/difference_type.hpp>
- #include <boost/range/begin.hpp>
- #include <boost/range/end.hpp>
- #include <boost/range/detail/implementation_help.hpp>
- #include <boost/assert.hpp>
- namespace boost
- {
- namespace range
- {
- template< class Container, class Range >
- inline Container& push_back( Container& on, const Range& from )
- {
- BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Container> ));
- BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const Range> ));
- BOOST_ASSERT_MSG(!range_detail::is_same_object(on, from),
- "cannot copy from a container to itself");
- on.insert( on.end(), boost::begin(from), boost::end(from) );
- return on;
- }
- }
- using range::push_back;
- }
- #endif
|