annotate DEPENDENCIES/generic/include/boost/range/algorithm_ext/push_back.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 // Boost.Range library
Chris@16 2 //
Chris@16 3 // Copyright Neil Groves 2009. Use, modification and
Chris@16 4 // distribution is subject to the Boost Software License, Version
Chris@16 5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 6 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 //
Chris@16 8 // For more information, see http://www.boost.org/libs/range/
Chris@16 9 //
Chris@16 10 #ifndef BOOST_RANGE_ALGORITHM_EXT_PUSH_BACK_HPP_INCLUDED
Chris@16 11 #define BOOST_RANGE_ALGORITHM_EXT_PUSH_BACK_HPP_INCLUDED
Chris@16 12
Chris@16 13 #include <boost/range/config.hpp>
Chris@16 14 #include <boost/range/concepts.hpp>
Chris@16 15 #include <boost/range/difference_type.hpp>
Chris@16 16 #include <boost/range/begin.hpp>
Chris@16 17 #include <boost/range/end.hpp>
Chris@101 18 #include <boost/range/detail/implementation_help.hpp>
Chris@16 19 #include <boost/assert.hpp>
Chris@16 20
Chris@16 21 namespace boost
Chris@16 22 {
Chris@16 23 namespace range
Chris@16 24 {
Chris@16 25
Chris@16 26 template< class Container, class Range >
Chris@16 27 inline Container& push_back( Container& on, const Range& from )
Chris@16 28 {
Chris@16 29 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<Container> ));
Chris@16 30 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const Range> ));
Chris@101 31 BOOST_ASSERT_MSG(!range_detail::is_same_object(on, from),
Chris@101 32 "cannot copy from a container to itself");
Chris@16 33 on.insert( on.end(), boost::begin(from), boost::end(from) );
Chris@16 34 return on;
Chris@16 35 }
Chris@16 36
Chris@16 37 } // namespace range
Chris@16 38 using range::push_back;
Chris@16 39 } // namespace boost
Chris@16 40
Chris@16 41 #endif // include guard