]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/hana/fwd/or.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / hana / fwd / or.hpp
CommitLineData
7c673cae
FG
1/*!
2@file
3Forward declares `boost::hana::or_`.
4
b32b8144 5@copyright Louis Dionne 2013-2017
7c673cae
FG
6Distributed 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_FWD_OR_HPP
11#define BOOST_HANA_FWD_OR_HPP
12
13#include <boost/hana/config.hpp>
14#include <boost/hana/core/when.hpp>
15
16
1e59de90 17namespace boost { namespace hana {
7c673cae
FG
18 //! Return whether any of the arguments is true-valued.
19 //! @ingroup group-Logical
20 //!
21 //! `or_` can be called with one argument or more. When called with
22 //! two arguments, `or_` uses tag-dispatching to find the right
23 //! implementation. Otherwise,
24 //! @code
25 //! or_(x) == x
26 //! or_(x, y, ...z) == or_(or_(x, y), z...)
27 //! @endcode
28 //!
29 //!
30 //! Example
31 //! -------
32 //! @include example/or.cpp
33#ifdef BOOST_HANA_DOXYGEN_INVOKED
34 constexpr auto or_ = [](auto&& x, auto&& ...y) -> decltype(auto) {
35 return tag-dispatched;
36 };
37#else
38 template <typename L, typename = void>
39 struct or_impl : or_impl<L, when<true>> { };
40
41 struct or_t {
42 template <typename X, typename Y>
43 constexpr decltype(auto) operator()(X&& x, Y&& y) const;
44
45 template <typename X, typename ...Y>
46 constexpr decltype(auto) operator()(X&& x, Y&& ...y) const;
47 };
48
1e59de90 49 BOOST_HANA_INLINE_VARIABLE constexpr or_t or_{};
7c673cae 50#endif
1e59de90 51}} // end namespace boost::hana
7c673cae
FG
52
53#endif // !BOOST_HANA_FWD_OR_HPP