1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*!
- @file
- Defines `boost::hana::detail::variadic::reverse_apply_unrolled`.
- Copyright Louis Dionne 2013-2022
- Distributed under the Boost Software License, Version 1.0.
- (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
- */
- #ifndef BOOST_HANA_DETAIL_VARIADIC_REVERSE_APPLY_UNROLLED_HPP
- #define BOOST_HANA_DETAIL_VARIADIC_REVERSE_APPLY_UNROLLED_HPP
- #include <boost/hana/config.hpp>
- #include <boost/hana/functional/reverse_partial.hpp>
- namespace boost { namespace hana { namespace detail { namespace variadic {
- struct reverse_apply_unrolled_impl {
- template <typename F>
- constexpr decltype(auto) operator()(F&& f) const {
- return static_cast<F&&>(f)();
- }
- template <typename F, typename X1>
- constexpr decltype(auto) operator()(F&& f, X1&& x1) const {
- return static_cast<F&&>(f)(
- static_cast<X1&&>(x1)
- );
- }
- template <typename F, typename X1, typename X2>
- constexpr decltype(auto) operator()(F&& f, X1&& x1, X2&& x2) const {
- return static_cast<F&&>(f)(
- static_cast<X2&&>(x2),
- static_cast<X1&&>(x1)
- );
- }
- template <typename F, typename X1, typename X2, typename X3>
- constexpr decltype(auto) operator()(F&& f, X1&& x1, X2&& x2, X3&& x3) const {
- return static_cast<F&&>(f)(
- static_cast<X3&&>(x3),
- static_cast<X2&&>(x2),
- static_cast<X1&&>(x1)
- );
- }
- template <typename F, typename X1, typename X2, typename X3, typename X4>
- constexpr decltype(auto) operator()(F&& f, X1&& x1, X2&& x2, X3&& x3, X4&& x4) const {
- return static_cast<F&&>(f)(
- static_cast<X4&&>(x4),
- static_cast<X3&&>(x3),
- static_cast<X2&&>(x2),
- static_cast<X1&&>(x1)
- );
- }
- template <typename F, typename X1, typename X2, typename X3, typename X4, typename X5>
- constexpr decltype(auto) operator()(F&& f, X1&& x1, X2&& x2, X3&& x3, X4&& x4, X5&& x5) const {
- return static_cast<F&&>(f)(
- static_cast<X5&&>(x5),
- static_cast<X4&&>(x4),
- static_cast<X3&&>(x3),
- static_cast<X2&&>(x2),
- static_cast<X1&&>(x1)
- );
- }
- template <typename F, typename X1, typename X2, typename X3, typename X4, typename X5, typename X6, typename ...Xn>
- constexpr decltype(auto) operator()(F&& f, X1&& x1, X2&& x2, X3&& x3, X4&& x4, X5&& x5, X6&& x6, Xn&& ...xn) const {
- return (*this)(hana::reverse_partial(
- static_cast<F&&>(f)
- , static_cast<X6&&>(x6)
- , static_cast<X5&&>(x5)
- , static_cast<X4&&>(x4)
- , static_cast<X3&&>(x3)
- , static_cast<X2&&>(x2)
- , static_cast<X1&&>(x1)
- ), static_cast<Xn&&>(xn)...);
- }
- };
- BOOST_HANA_INLINE_VARIABLE constexpr reverse_apply_unrolled_impl reverse_apply_unrolled{};
- }} }} // end namespace boost::hana
- #endif // !BOOST_HANA_DETAIL_VARIADIC_REVERSE_APPLY_UNROLLED_HPP
|