]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/iterator/value_of.hpp
Updated boost to v1.55.0
[rsem.git] / boost / fusion / iterator / value_of.hpp
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
3
4     Distributed under the Boost Software License, Version 1.0. (See accompanying 
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #if !defined(FUSION_VALUE_OF_05052005_1126)
8 #define FUSION_VALUE_OF_05052005_1126
9
10 #include <boost/fusion/support/iterator_base.hpp>
11 #include <boost/fusion/support/tag_of.hpp>
12
13 namespace boost { namespace fusion
14 {
15     // Special tags:
16     struct iterator_facade_tag; // iterator facade tag
17     struct boost_array_iterator_tag; // boost::array iterator tag
18     struct mpl_iterator_tag; // mpl sequence iterator tag
19     struct std_pair_iterator_tag; // std::pair iterator tag
20
21     namespace extension
22     {
23         template <typename Tag>
24         struct value_of_impl
25         {
26             template <typename Iterator>
27             struct apply {};
28         };
29
30         template <>
31         struct value_of_impl<iterator_facade_tag>
32         {
33             template <typename Iterator>
34             struct apply : Iterator::template value_of<Iterator> {};
35         };
36
37         template <>
38         struct value_of_impl<boost_array_iterator_tag>;
39
40         template <>
41         struct value_of_impl<mpl_iterator_tag>;
42
43         template <>
44         struct value_of_impl<std_pair_iterator_tag>;
45     }
46
47     namespace result_of
48     {
49         template <typename Iterator>
50         struct value_of
51             : extension::value_of_impl<typename detail::tag_of<Iterator>::type>::
52                 template apply<Iterator>
53         {};
54     }
55 }}
56
57 #endif