Warning, file /include/boost/fusion/view/reverse_view/detail/value_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 #if !defined(FUSION_VALUE_OF_IMPL_07202005_0900)
0008 #define FUSION_VALUE_OF_IMPL_07202005_0900
0009
0010 #include <boost/fusion/support/config.hpp>
0011 #include <boost/fusion/iterator/value_of.hpp>
0012 #include <boost/fusion/iterator/prior.hpp>
0013
0014 namespace boost { namespace fusion
0015 {
0016 struct reverse_view_iterator_tag;
0017
0018 namespace extension
0019 {
0020 template <typename Tag>
0021 struct value_of_impl;
0022
0023 template <>
0024 struct value_of_impl<reverse_view_iterator_tag>
0025 {
0026 template <typename Iterator>
0027 struct apply
0028 {
0029 typedef typename
0030 result_of::value_of<
0031 typename result_of::prior<
0032 typename Iterator::first_type
0033 >::type
0034 >::type
0035 type;
0036 };
0037 };
0038 }
0039 }}
0040
0041 #endif
0042
0043