Ticket #6726: insert.hpp

File insert.hpp, 1.8 KB (added by Adam D. Walling <adam.walling@…>, 11 years ago)

modified insert.hpp

Line 
1// Boost.Range library
2//
3// Copyright Neil Groves 2009. Use, modification and
4// distribution is subject to the Boost Software License, Version
5// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// For more information, see http://www.boost.org/libs/range/
9//
10#ifndef BOOST_RANGE_ALGORITHM_EXT_INSERT_HPP_INCLUDED
11#define BOOST_RANGE_ALGORITHM_EXT_INSERT_HPP_INCLUDED
12
13#include <boost/range/config.hpp>
14#include <boost/range/concepts.hpp>
15#include <boost/range/difference_type.hpp>
16#include <boost/range/begin.hpp>
17#include <boost/range/end.hpp>
18#include <boost/assert.hpp>
19
20namespace boost
21{
22 namespace range
23 {
24
25template< class Container, class Range >
26inline Container& insert( Container& on,
27 BOOST_DEDUCED_TYPENAME Container::iterator before,
28 const Range& from )
29{
30 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> ));
31 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Range> ));
32 BOOST_ASSERT( (void*)&on != (void*)&from &&
33 "cannot copy from a container to itself" );
34 on.insert( before, boost::begin(from), boost::end(from) );
35 return on;
36}
37
38// for associative containers
39template< class Container, class Range >
40inline Container& insert( Container& on,
41 const Range& from )
42{
43 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> ));
44 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Range> ));
45 BOOST_ASSERT( (void*)&on != (void*)&from &&
46 "cannot copy from a container to itself" );
47 on.insert( boost::begin(from), boost::end(from) );
48 return on;
49}
50
51 } // namespace range
52 using range::insert;
53} // namespace boost
54
55#endif // include guard