Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 09:52:46

0001 /*!
0002 @file
0003 Defines `boost::hana::detail::nested_to`.
0004 
0005 Copyright Louis Dionne 2013-2022
0006 Distributed under the Boost Software License, Version 1.0.
0007 (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
0008  */
0009 
0010 #ifndef BOOST_HANA_DETAIL_NESTED_TO_HPP
0011 #define BOOST_HANA_DETAIL_NESTED_TO_HPP
0012 
0013 #include <boost/hana/detail/nested_to_fwd.hpp>
0014 
0015 #include <boost/hana/config.hpp>
0016 #include <boost/hana/functional/partial.hpp>
0017 
0018 
0019 namespace boost { namespace hana { namespace detail {
0020     //! @cond
0021     template <typename Algorithm>
0022     template <typename X>
0023     constexpr decltype(auto) nested_to_t<Algorithm>::operator()(X&& x) const
0024     { return hana::partial(Algorithm{}, static_cast<X&&>(x)); }
0025     //! @endcond
0026 } }} // end namespace boost::hana
0027 
0028 #endif // !BOOST_HANA_DETAIL_NESTED_TO_HPP