/*============================================================================= 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_09162005_1118) #define FUSION_AT_KEY_IMPL_09162005_1118 #include #include #include namespace boost { namespace fusion { struct set_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& s) { return s.at_impl(mpl::identity()); } }; }; } }} #endif