Warning, file /include/boost/fusion/view/reverse_view/detail/key_of_impl.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_FUSION_VIEW_REVERSE_VIEW_DETAIL_KEY_OF_IMPL_HPP
0010 #define BOOST_FUSION_VIEW_REVERSE_VIEW_DETAIL_KEY_OF_IMPL_HPP
0011
0012 #include <boost/fusion/support/config.hpp>
0013 #include <boost/fusion/iterator/key_of.hpp>
0014 #include <boost/fusion/iterator/prior.hpp>
0015
0016 namespace boost { namespace fusion { namespace extension
0017 {
0018 template <typename>
0019 struct key_of_impl;
0020
0021 template <>
0022 struct key_of_impl<reverse_view_iterator_tag>
0023 {
0024 template <typename It>
0025 struct apply
0026 {
0027 typedef typename
0028 result_of::key_of<
0029 typename result_of::prior<
0030 typename It::first_type
0031 >::type
0032 >::type
0033 type;
0034 };
0035 };
0036 }}}
0037
0038 #endif