1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef BOOST_HANA_DETAIL_NESTED_TO_FWD_HPP
- #define BOOST_HANA_DETAIL_NESTED_TO_FWD_HPP
- #include <boost/hana/config.hpp>
- namespace boost { namespace hana { namespace detail {
- template <typename Algorithm>
- struct nested_to_t {
- template <typename X>
- constexpr decltype(auto) operator()(X&& x) const;
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename Algorithm>
- struct nested_to { static constexpr nested_to_t<Algorithm> to{}; };
- template <typename Algorithm>
- constexpr nested_to_t<Algorithm> nested_to<Algorithm>::to;
- } }}
- #endif
|