/*============================================================================= Copyright (c) 2001-2006 Joel de Guzman 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) ==============================================================================*/ #if !defined(FUSION_AT_KEY_IMPL_05222005_0254) #define FUSION_AT_KEY_IMPL_05222005_0254 #include #include #include namespace boost { namespace fusion { struct map_tag; namespace extension { template struct at_key_impl; template <> struct at_key_impl { template struct apply { typedef typename Sequence::template meta_at_impl element; typedef typename mpl::eval_if< is_const , detail::cref_result , detail::ref_result >::type type; static type call(Sequence& m) { return m.at_impl(mpl::identity()); } }; }; } }} #endif