/usr/include/boost/mpl/map/aux_
NameSizeModeActions
preprocessed/-0755rm
at_impl.hpp33910644editdlrm
begin_end_impl.hpp12310644editdlrm
clear_impl.hpp7730644editdlrm
contains_impl.hpp10170644editdlrm
empty_impl.hpp7330644editdlrm
erase_impl.hpp9180644editdlrm
erase_key_impl.hpp12850644editdlrm
has_key_impl.hpp10870644editdlrm
include_preprocessed.hpp15860644editdlrm
insert_impl.hpp16220644editdlrm
insert_range_impl.hpp9200644editdlrm
item.hpp39320644editdlrm
iterator.hpp36040644editdlrm
key_type_impl.hpp7810644editdlrm
map0.hpp21550644editdlrm
numbered.hpp24580644editdlrm
size_impl.hpp6820644editdlrm
tag.hpp5380644editdlrm
value_type_impl.hpp7920644editdlrm
Edit: /usr/include/boost/mpl/map/aux_/begin_end_impl.hpp (1231B)
#ifndef BOOST_MPL_MAP_AUX_BEGIN_END_IMPL_HPP_INCLUDED #define BOOST_MPL_MAP_AUX_BEGIN_END_IMPL_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2003-2004 // Copyright David Abrahams 2003-2004 // // 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) // // See http://www.boost.org/libs/mpl for documentation. // $Id$ // $Date$ // $Revision$ #include #include #include namespace boost { namespace mpl { template<> struct begin_impl< aux::map_tag > { template< typename Map > struct apply { typedef typename next< typename Map::order >::type max_order_; typedef m_iter< Map , next_order::value , max_order_::value > type; }; }; template<> struct end_impl< aux::map_tag > { template< typename Map > struct apply { typedef typename next< typename Map::order >::type max_order_; typedef m_iter< Map,max_order_::value,max_order_::value > type; }; }; }} #endif // BOOST_MPL_MAP_AUX_BEGIN_END_IMPL_HPP_INCLUDED