#ifndef BOOST_MP11_DETAIL_MP_MAP_FIND_HPP_INCLUDED #define BOOST_MP11_DETAIL_MP_MAP_FIND_HPP_INCLUDED // Copyright 2015 Peter Dimov. // // Distributed under the Boost Software License, Version 1.0. // // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt #include #include #if BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1930 ) // not exactly good practice, but... namespace std { template class tuple; } #endif namespace boost { namespace mp11 { // mp_map_find namespace detail { #if !BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1930 ) template using mpmf_wrap = mp_identity; template using mpmf_unwrap = typename T::type; #else template struct mpmf_tuple {}; template struct mpmf_wrap_impl { using type = mp_identity; }; template struct mpmf_wrap_impl< std::tuple > { using type = mp_identity< mpmf_tuple >; }; template using mpmf_wrap = typename mpmf_wrap_impl::type; template struct mpmf_unwrap_impl { using type = typename T::type; }; template struct mpmf_unwrap_impl< mp_identity< mpmf_tuple > > { using type = std::tuple; }; template using mpmf_unwrap = typename mpmf_unwrap_impl::type; #endif // #if !BOOST_MP11_WORKAROUND( BOOST_MP11_MSVC, < 1930 ) template struct mp_map_find_impl; template class M, class... T, class K> struct mp_map_find_impl, K> { using U = mp_inherit...>; template class L, class... U> static mp_identity> f( mp_identity>* ); static mp_identity f( ... ); using type = mpmf_unwrap< decltype( f((U*)0) ) >; }; } // namespace detail template using mp_map_find = typename detail::mp_map_find_impl::type; } // namespace mp11 } // namespace boost #endif // #ifndef BOOST_MP11_DETAIL_MP_MAP_FIND_HPP_INCLUDED