Blame view

3rdparty/boost_1_81_0/boost/hana/fwd/partition.hpp 2.71 KB
63e88f80   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  /*!
  @file
  Forward declares `boost::hana::partition`.
  
  Copyright Louis Dionne 2013-2022
  Distributed under the Boost Software License, Version 1.0.
  (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
   */
  
  #ifndef BOOST_HANA_FWD_PARTITION_HPP
  #define BOOST_HANA_FWD_PARTITION_HPP
  
  #include <boost/hana/config.hpp>
  #include <boost/hana/core/when.hpp>
  #include <boost/hana/detail/nested_by_fwd.hpp>
  
  
  
  namespace boost { namespace hana {
      //! Partition a sequence based on a `predicate`.
      //! @ingroup group-Sequence
      //!
      //! Specifically, returns an unspecified `Product` whose first element is
      //! a sequence of the elements satisfying the predicate, and whose second
      //! element is a sequence of the elements that do not satisfy the predicate.
      //!
      //!
      //! Signature
      //! ---------
      //! Given a Sequence `S(T)`, an `IntegralConstant` `Bool` holding a value
      //! of type `bool`, and a predicate \f$ T \to Bool \f$, `partition` has
      //! the following signature:
      //! \f[
      //!     \mathtt{partition} : S(T) \times (T \to Bool) \to S(T) \times S(T)
      //! \f]
      //!
      //! @param xs
      //! The sequence to be partitioned.
      //!
      //! @param predicate
      //! A function called as `predicate(x)` for each element `x` in the
      //! sequence, and returning whether `x` should be added to the sequence
      //! in the first component or in the second component of the resulting
      //! pair. In the current version of the library, `predicate` must return
      //! an `IntegralConstant` holding a value convertible to `bool`.
      //!
      //!
      //! Syntactic sugar (`partition.by`)
      //! --------------------------------
      //! `partition` can be called in an alternate way, which provides a nice
      //! syntax in some cases where the predicate is short:
      //! @code
      //!     partition.by(predicate, xs) == partition(xs, predicate)
      //!     partition.by(predicate) == partition(-, predicate)
      //! @endcode
      //!
      //! where `partition(-, predicate)` denotes the partial application of
      //! `partition` to `predicate`.
      //!
      //!
      //! Example
      //! -------
      //! @include example/partition.cpp
  #ifdef BOOST_HANA_DOXYGEN_INVOKED
      constexpr auto partition = [](auto&& xs, auto&& predicate) {
          return tag-dispatched;
      };
  #else
      template <typename S, typename = void>
      struct partition_impl : partition_impl<S, when<true>> { };
  
      struct partition_t : detail::nested_by<partition_t> {
          template <typename Xs, typename Pred>
          constexpr auto operator()(Xs&& xs, Pred&& pred) const;
      };
  
      BOOST_HANA_INLINE_VARIABLE constexpr partition_t partition{};
  #endif
  }} // end namespace boost::hana
  
  #endif // !BOOST_HANA_FWD_PARTITION_HPP