123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef BOOST_HOF_GUARD_ROTATE_H
- #define BOOST_HOF_GUARD_ROTATE_H
- #include <boost/hof/detail/result_of.hpp>
- #include <boost/hof/reveal.hpp>
- #include <boost/hof/detail/make.hpp>
- #include <boost/hof/detail/static_const_var.hpp>
- namespace boost { namespace hof {
- template<class F>
- struct rotate_adaptor : detail::callable_base<F>
- {
- typedef rotate_adaptor fit_rewritable1_tag;
- BOOST_HOF_INHERIT_CONSTRUCTOR(rotate_adaptor, detail::callable_base<F>);
- template<class... Ts>
- constexpr const detail::callable_base<F>& base_function(Ts&&... xs) const noexcept
- {
- return boost::hof::always_ref(*this)(xs...);
- }
- struct rotate_failure
- {
- template<class Failure>
- struct apply
- {
- template<class T, class... Ts>
- struct of
- : Failure::template of<Ts..., T>
- {};
- };
- };
- struct failure
- : failure_map<rotate_failure, detail::callable_base<F>>
- {};
- BOOST_HOF_RETURNS_CLASS(rotate_adaptor);
- template<class T, class... Ts>
- constexpr BOOST_HOF_SFINAE_RESULT(const detail::callable_base<F>&, id_<Ts>..., id_<T>)
- operator()(T&& x, Ts&&... xs) const BOOST_HOF_SFINAE_RETURNS
- (
- (BOOST_HOF_MANGLE_CAST(const detail::callable_base<F>&)(BOOST_HOF_CONST_THIS->base_function(xs...)))
- (BOOST_HOF_FORWARD(Ts)(xs)..., BOOST_HOF_FORWARD(T)(x))
- );
- };
- BOOST_HOF_DECLARE_STATIC_VAR(rotate, detail::make<rotate_adaptor>);
- }}
- #endif
|