New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
insert.hpp in vendors/XIOS/current/extern/boost/include/boost/range/algorithm_ext – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/range/algorithm_ext/insert.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 1.3 KB
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    } // namespace range
39    using range::insert;
40} // namespace boost
41
42#endif // include guard
Note: See TracBrowser for help on using the repository browser.