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.
partition.hpp in vendors/XIOS/current/extern/boost/include/boost/range/algorithm – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/range/algorithm/partition.hpp @ 3408

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

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1//  Copyright Neil Groves 2009. Use, modification and
2//  distribution is subject to the Boost Software License, Version
3//  1.0. (See accompanying file LICENSE_1_0.txt or copy at
4//  http://www.boost.org/LICENSE_1_0.txt)
5//
6//
7// For more information, see http://www.boost.org/libs/range/
8//
9#ifndef BOOST_RANGE_ALGORITHM_PARTITION__HPP_INCLUDED
10#define BOOST_RANGE_ALGORITHM_PARTITION__HPP_INCLUDED
11
12#include <boost/concept_check.hpp>
13#include <boost/range/begin.hpp>
14#include <boost/range/end.hpp>
15#include <boost/range/concepts.hpp>
16#include <boost/range/detail/range_return.hpp>
17#include <algorithm>
18
19namespace boost
20{
21    namespace range
22    {
23
24/// \brief template function partition
25///
26/// range-based version of the partition std algorithm
27///
28/// \pre ForwardRange is a model of the ForwardRangeConcept
29template<class ForwardRange, class UnaryPredicate>
30inline BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type
31partition(ForwardRange& rng, UnaryPredicate pred)
32{
33    BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<ForwardRange> ));
34    return std::partition(boost::begin(rng),boost::end(rng),pred);
35}
36
37/// \overload
38template<class ForwardRange, class UnaryPredicate>
39inline BOOST_DEDUCED_TYPENAME range_iterator<ForwardRange>::type
40partition(const ForwardRange& rng, UnaryPredicate pred)
41{
42    BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<const ForwardRange> ));
43    return std::partition(boost::begin(rng),boost::end(rng),pred);
44}
45
46// range_return overloads
47
48/// \overload
49template< range_return_value re, class ForwardRange,
50          class UnaryPredicate >
51inline BOOST_DEDUCED_TYPENAME range_return<ForwardRange,re>::type
52partition(ForwardRange& rng, UnaryPredicate pred)
53{
54    BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<ForwardRange> ));
55    return boost::range_return<ForwardRange,re>::
56        pack(std::partition(boost::begin(rng), boost::end(rng), pred), rng);
57}
58
59/// \overload
60template< range_return_value re, class ForwardRange,
61          class UnaryPredicate >
62inline BOOST_DEDUCED_TYPENAME range_return<const ForwardRange,re>::type
63partition(const ForwardRange& rng, UnaryPredicate pred)
64{
65    BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<const ForwardRange> ));
66    return boost::range_return<const ForwardRange,re>::
67        pack(std::partition(boost::begin(rng), boost::end(rng), pred), rng);
68}
69
70    } // namespace range
71    using range::partition;
72} // namespace boost
73
74#endif // include guard
Note: See TracBrowser for help on using the repository browser.