]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/range/algorithm_ext/insert.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / range / algorithm_ext / insert.hpp
CommitLineData
7c673cae
FG
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 on.insert( before, boost::begin(from), boost::end(from) );
33 return on;
34}
35
36template< class Container, class Range >
37inline Container& insert( Container& on, const Range& from )
38{
39 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> ));
40 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Range> ));
41 on.insert(boost::begin(from), boost::end(from));
92f5a8d4 42 return on;
7c673cae
FG
43}
44
45 } // namespace range
46 using range::insert;
47} // namespace boost
48
49#endif // include guard