123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*=============================================================================
- Copyright (c) 2001-2011 Joel de Guzman
- 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)
- ==============================================================================*/
- #if !defined(FUSION_STD_TUPLE_ITERATOR_09112011_1905)
- #define FUSION_STD_TUPLE_ITERATOR_09112011_1905
- #include <boost/fusion/support/config.hpp>
- #include <boost/fusion/iterator/iterator_facade.hpp>
- #include <boost/type_traits/is_const.hpp>
- #include <boost/type_traits/remove_const.hpp>
- #include <boost/fusion/support/detail/access.hpp>
- #include <boost/mpl/int.hpp>
- #include <boost/mpl/if.hpp>
- #include <tuple>
- #include <utility>
- #ifdef _MSC_VER
- # pragma warning(push)
- # pragma warning(disable: 4512) // assignment operator could not be generated.
- #endif
- namespace boost { namespace fusion
- {
- struct random_access_traversal_tag;
- template <typename Tuple, int Index>
- struct std_tuple_iterator_identity;
- template <typename Tuple, int Index>
- struct std_tuple_iterator
- : iterator_facade<
- std_tuple_iterator<Tuple, Index>
- , random_access_traversal_tag>
- {
- typedef Tuple tuple_type;
- static int const index = Index;
- typedef std_tuple_iterator_identity<
- typename add_const<Tuple>::type, Index>
- identity;
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- explicit std_tuple_iterator(Tuple& tuple)
- : tuple(tuple) {}
- Tuple& tuple;
- template <typename Iterator>
- struct value_of
- : std::tuple_element<Iterator::index,
- typename remove_const<typename Iterator::tuple_type>::type> {};
- template <typename Iterator>
- struct deref
- {
- typedef typename value_of<Iterator>::type element;
- typedef typename
- mpl::if_<
- is_const<typename Iterator::tuple_type>
- , typename fusion::detail::cref_result<element>::type
- , typename fusion::detail::ref_result<element>::type
- >::type
- type;
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- static type
- call(Iterator const& iter)
- {
- return std::get<Index>(iter.tuple);
- }
- };
- template <typename Iterator, typename N>
- struct advance
- {
- static int const index = Iterator::index;
- typedef typename Iterator::tuple_type tuple_type;
- typedef std_tuple_iterator<tuple_type, index+N::value> type;
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- static type
- call(Iterator const& i)
- {
- return type(i.tuple);
- }
- };
- template <typename Iterator>
- struct next : advance<Iterator, mpl::int_<1>> {};
- template <typename Iterator>
- struct prior : advance<Iterator, mpl::int_<-1>> {};
- template <typename I1, typename I2>
- struct equal_to
- : is_same<typename I1::identity, typename I2::identity> {};
- template <typename First, typename Last>
- struct distance
- {
- typedef mpl::int_<Last::index-First::index> type;
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- static type
- call(First const&, Last const&)
- {
- return type();
- }
- };
- };
- }}
- #ifdef _MSC_VER
- # pragma warning(pop)
- #endif
- #ifdef BOOST_FUSION_WORKAROUND_FOR_LWG_2408
- namespace std
- {
- template <typename Tuple, int Index>
- struct iterator_traits< ::boost::fusion::std_tuple_iterator<Tuple, Index> >
- { };
- }
- #endif
- #endif
|