Imported Upstream version 1.57.0
[platform/upstream/boost.git] / boost / fusion / container / map / detail / value_at_key_impl.hpp
1 /*=============================================================================
2     Copyright (c) 2001-2013 Joel de Guzman
3
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #if !defined(BOOST_FUSION_MAP_DETAIL_VALUE_AT_KEY_IMPL_02042013_0821)
8 #define BOOST_FUSION_MAP_DETAIL_VALUE_AT_KEY_IMPL_02042013_0821
9
10 #include <boost/fusion/support/config.hpp>
11 #include <boost/fusion/support/detail/access.hpp>
12 #include <boost/type_traits/is_const.hpp>
13 #include <boost/mpl/at.hpp>
14 #include <boost/mpl/identity.hpp>
15
16 namespace boost { namespace fusion
17 {
18     struct map_tag;
19
20     namespace extension
21     {
22         template <typename Tag>
23         struct value_at_key_impl;
24
25         template <>
26         struct value_at_key_impl<map_tag>
27         {
28             template <typename Sequence, typename Key>
29             struct apply
30             {
31                 typedef
32                     decltype(std::declval<Sequence>().get_val(mpl::identity<Key>()))
33                 type;
34             };
35         };
36     }
37 }}
38
39 #endif