]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/hana/include/boost/hana/all.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / hana / include / boost / hana / all.hpp
1 /*!
2 @file
3 Defines `boost::hana::all`.
4
5 @copyright Louis Dionne 2013-2016
6 Distributed under the Boost Software License, Version 1.0.
7 (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
8 */
9
10 #ifndef BOOST_HANA_ALL_HPP
11 #define BOOST_HANA_ALL_HPP
12
13 #include <boost/hana/fwd/all.hpp>
14
15 #include <boost/hana/all_of.hpp>
16 #include <boost/hana/concept/searchable.hpp>
17 #include <boost/hana/config.hpp>
18 #include <boost/hana/core/dispatch.hpp>
19 #include <boost/hana/functional/id.hpp>
20
21
22 BOOST_HANA_NAMESPACE_BEGIN
23 //! @cond
24 template <typename Xs>
25 constexpr auto all_t::operator()(Xs&& xs) const {
26 using S = typename hana::tag_of<Xs>::type;
27 using All = BOOST_HANA_DISPATCH_IF(all_impl<S>,
28 hana::Searchable<S>::value
29 );
30
31 #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
32 static_assert(hana::Searchable<S>::value,
33 "hana::all(xs) requires 'xs' to be a Searchable");
34 #endif
35
36 return All::apply(static_cast<Xs&&>(xs));
37 }
38 //! @endcond
39
40 template <typename S, bool condition>
41 struct all_impl<S, when<condition>> : default_ {
42 template <typename Xs>
43 static constexpr auto apply(Xs&& xs)
44 { return hana::all_of(static_cast<Xs&&>(xs), hana::id); }
45 };
46 BOOST_HANA_NAMESPACE_END
47
48 #endif // !BOOST_HANA_ALL_HPP