File indexing completed on 2025-01-18 09:38:15
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_HOF_GUARD_IF_H
0009 #define BOOST_HOF_GUARD_IF_H
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074 #include <boost/hof/always.hpp>
0075 #include <boost/hof/detail/callable_base.hpp>
0076 #include <boost/hof/detail/forward.hpp>
0077 #include <boost/hof/detail/delegate.hpp>
0078 #include <boost/hof/detail/move.hpp>
0079 #include <boost/hof/detail/static_const_var.hpp>
0080
0081 namespace boost { namespace hof {
0082
0083 namespace detail {
0084
0085 template<class C, class...>
0086 struct if_depend
0087 : C
0088 {};
0089
0090 template<bool Cond, class F>
0091 struct if_adaptor : detail::callable_base<F>
0092 {
0093 BOOST_HOF_INHERIT_CONSTRUCTOR(if_adaptor, detail::callable_base<F>)
0094 };
0095
0096 template<class F>
0097 struct if_adaptor<false, F>
0098 {
0099 template<class... Ts>
0100 constexpr if_adaptor(Ts&&...) noexcept
0101 {}
0102 };
0103
0104 template<bool Cond>
0105 struct make_if_f
0106 {
0107 constexpr make_if_f() noexcept
0108 {}
0109 template<class F>
0110 constexpr if_adaptor<Cond, F> operator()(F f) const BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(F, F&&)
0111 {
0112 return if_adaptor<Cond, F>(static_cast<F&&>(f));
0113 }
0114 };
0115
0116 struct if_f
0117 {
0118 constexpr if_f()
0119 {}
0120 template<class Cond, bool B=Cond::type::value>
0121 constexpr make_if_f<B> operator()(Cond) const noexcept
0122 {
0123 return {};
0124 }
0125 };
0126
0127 }
0128 #if BOOST_HOF_HAS_VARIABLE_TEMPLATES
0129 template<bool B>
0130 BOOST_HOF_STATIC_CONSTEXPR detail::make_if_f<B> if_c = {};
0131 #else
0132 template<bool B, class F>
0133 constexpr detail::if_adaptor<B, F> if_c(F f) BOOST_HOF_NOEXCEPT_CONSTRUCTIBLE(F, F&&)
0134 {
0135 return detail::if_adaptor<B, F>(static_cast<F&&>(f));
0136 }
0137 #endif
0138
0139 BOOST_HOF_DECLARE_STATIC_VAR(if_, detail::if_f);
0140
0141 }}
0142
0143 #endif