File indexing completed on 2025-01-18 09:33:39
0001
0002
0003
0004
0005
0006
0007 #if !defined(BOOST_FUSION_MAP_END_IMPL_02042013_0857)
0008 #define BOOST_FUSION_MAP_END_IMPL_02042013_0857
0009
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/container/map/map_iterator.hpp>
0012
0013 namespace boost { namespace fusion
0014 {
0015 struct map_tag;
0016
0017 namespace extension
0018 {
0019 template<typename T>
0020 struct end_impl;
0021
0022 template<>
0023 struct end_impl<map_tag>
0024 {
0025 template<typename Sequence>
0026 struct apply
0027 {
0028 typedef map_iterator<Sequence, Sequence::size::value> type;
0029
0030 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
0031 static type call(Sequence& seq)
0032 {
0033 return type(seq);
0034 }
0035 };
0036 };
0037 }
0038 }}
0039
0040 #endif