]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/range/doc/reference/algorithm/stable_partition.qbk
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / range / doc / reference / algorithm / stable_partition.qbk
CommitLineData
7c673cae
FG
1[/
2 Copyright 2010 Neil Groves
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5/]
6[section:stable_partition stable_partition]
7
8[heading Prototype]
9
10``
11template<class ForwardRange, class UnaryPredicate>
12typename range_iterator<ForwardRange>::type
13stable_partition(ForwardRange& rng, UnaryPredicate pred);
14
15template<class ForwardRange, class UnaryPredicate>
16typename range_iterator<const ForwardRange>::type
17stable_partition(const ForwardRange& rng, UnaryPredicate pred);
18
19template<
20 range_return_value re,
21 class ForwardRange,
22 class UnaryPredicate
23>
24typename range_return<ForwardRange, re>::type
25stable_partition(ForwardRange& rng, UnaryPredicate pred);
26
27template<
28 range_return_value re,
29 class ForwardRange,
30 class UnaryPredicate
31>
32typename range_return<const ForwardRange, re>::type
33stable_partition(const ForwardRange& rng, UnaryPredicate pred);
34``
35
36[heading Description]
37
38`stable_partition` reorders the elements in the range `rng` base on the function object `pred`. Once this function has completed all of the elements that satisfy `pred` appear before all of the elements that fail to satisfy it. `stable_partition` differs from `partition` because it preserves relative order. It is stable.
39
40For the versions that return an iterator, the return value is the iterator to the first element that fails to satisfy `pred`.
41
42For versions that return a `range_return`, the `found` iterator is the iterator to the first element that fails to satisfy `pred`.
43
44[heading Definition]
45
46Defined in the header file `boost/range/algorithm/stable_partition.hpp`
47
48[heading Requirements]
49
50* `ForwardRange` is a model of the __forward_range__ Concept.
51* `ForwardRange` is mutable.
52* `UnaryPredicate` is a model of the `PredicateConcept`.
53
54[heading Complexity]
55
56Best case: `O(N)` where `N` is `distance(rng)`.
57Worst case: `N * log(N)` swaps, where `N` is `distance(rng)`.
58
59[endsect]
60
61