![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/hana/detail/ |
Upload File : |
/*! @file Defines `boost::hana::detail::type_foldr1`. @copyright Louis Dionne 2013-2017 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_TYPE_FOLDR1_HPP #define BOOST_HANA_DETAIL_TYPE_FOLDR1_HPP #include <boost/hana/config.hpp> BOOST_HANA_NAMESPACE_BEGIN namespace detail { template <unsigned n> struct type_foldr1_t; template <> struct type_foldr1_t<0> { template < template <typename ...> class f, typename state > using result = state; }; template <> struct type_foldr1_t<1> { template < template <typename ...> class f, typename x1, typename state > using result = typename f<x1, state>::type; }; template <> struct type_foldr1_t<2> { template < template <typename ...> class f, typename x1, typename x2, typename state > using result = typename f<x1, typename f<x2, state>::type>::type; }; template <> struct type_foldr1_t<3> { template < template <typename ...> class f, typename x1, typename x2, typename x3, typename state > using result = typename f< x1, typename f< x2, typename f< x3, state >::type >::type >::type; }; template <> struct type_foldr1_t<4> { template < template <typename ...> class f, typename x1, typename x2, typename x3, typename x4, typename state > using result = typename f< x1, typename f< x2, typename f< x3, typename f< x4, state >::type >::type >::type >::type; }; template <> struct type_foldr1_t<5> { template < template <typename ...> class f, typename x1, typename x2, typename x3, typename x4, typename x5, typename state > using result = typename f< x1, typename f< x2, typename f< x3, typename f< x4, typename f< x5, state >::type >::type >::type >::type >::type; }; template <> struct type_foldr1_t<6> { template < template <typename ...> class f, typename x1, typename x2, typename x3, typename x4, typename x5, typename x6, typename ...xs > using result = typename f< x1, typename f< x2, typename f< x3, typename f< x4, typename f< x5, typename type_foldr1_t<(sizeof...(xs) > 6 ? 6 : sizeof...(xs))>:: template result<f, x6, xs...> >::type >::type >::type >::type >::type; }; template <template <typename ...> class f, typename x1, typename ...xn> struct type_foldr1 { using type = typename type_foldr1_t<(sizeof...(xn) > 6 ? 6 : sizeof...(xn))> ::template result<f, x1, xn...>; }; } BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_DETAIL_TYPE_FOLDR1_HPP