File indexing completed on 2025-01-18 09:38:15
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_HOF_GUARD_FLIP_H
0009 #define BOOST_HOF_GUARD_FLIP_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 #include <boost/hof/detail/callable_base.hpp>
0058 #include <boost/hof/reveal.hpp>
0059 #include <boost/hof/detail/make.hpp>
0060 #include <boost/hof/detail/static_const_var.hpp>
0061
0062 namespace boost { namespace hof {
0063
0064 template<class F>
0065 struct flip_adaptor : detail::callable_base<F>
0066 {
0067 typedef flip_adaptor fit_rewritable1_tag;
0068 BOOST_HOF_INHERIT_CONSTRUCTOR(flip_adaptor, detail::callable_base<F>);
0069
0070 template<class... Ts>
0071 constexpr const detail::callable_base<F>& base_function(Ts&&... xs) const
0072 {
0073 return boost::hof::always_ref(*this)(xs...);
0074 }
0075
0076 struct flip_failure
0077 {
0078 template<class Failure>
0079 struct apply
0080 {
0081 template<class T, class U, class... Ts>
0082 struct of
0083 : Failure::template of<U, T, Ts...>
0084 {};
0085 };
0086 };
0087
0088 struct failure
0089 : failure_map<flip_failure, detail::callable_base<F>>
0090 {};
0091
0092 BOOST_HOF_RETURNS_CLASS(flip_adaptor);
0093
0094 template<class T, class U, class... Ts>
0095 constexpr BOOST_HOF_SFINAE_RESULT(const detail::callable_base<F>&, id_<U>, id_<T>, id_<Ts>...)
0096 operator()(T&& x, U&& y, Ts&&... xs) const BOOST_HOF_SFINAE_RETURNS
0097 (
0098 (BOOST_HOF_MANGLE_CAST(const detail::callable_base<F>&)(BOOST_HOF_CONST_THIS->base_function(xs...)))
0099 (BOOST_HOF_FORWARD(U)(y), BOOST_HOF_FORWARD(T)(x), BOOST_HOF_FORWARD(Ts)(xs)...)
0100 );
0101 };
0102
0103 BOOST_HOF_DECLARE_STATIC_VAR(flip, detail::make<flip_adaptor>);
0104
0105 }}
0106
0107 #endif