Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.

boost/spirit/fusion/iterator/tuple_iterator.hpp

/*=============================================================================
    Copyright (c) 2003 Joel de Guzman
    Copyright (c) 2004 Peder Holt

    Use, modification and distribution is subject to 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_ITERATOR_TUPLE_ITERATOR_HPP)
#define FUSION_ITERATOR_TUPLE_ITERATOR_HPP

#include <boost/mpl/int.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/spirit/fusion/iterator/detail/iterator_base.hpp>
#include <boost/spirit/fusion/iterator/detail/tuple_iterator/deref_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/tuple_iterator/value_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/tuple_iterator/next_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/tuple_iterator/prior_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/tuple_iterator/equal_to_traits.hpp>
#include <boost/spirit/fusion/sequence/detail/tuple_begin_end_traits.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/less.hpp>
#include <boost/mpl/identity.hpp>

namespace boost { namespace fusion
{
    struct tuple_iterator_tag;
    struct void_t;

    template <int N, typename Tuple>
    struct tuple_iterator;

    template <int N, typename Tuple>
    struct tuple_iterator_base : iterator_base<tuple_iterator<N, Tuple> >
    {
        typedef FUSION_INT(N) index;
        typedef Tuple tuple;
        typedef tuple_iterator_tag tag;
        typedef tuple_iterator<N, Tuple> self_type;
    };

    template <int N, typename Tuple>
    struct tuple_iterator : tuple_iterator_base<N,Tuple>
    {
        typedef typename tuple_iterator_base<N,Tuple>::tuple tuple;
        typedef typename tuple_iterator_base<N,Tuple>::index index;
        typedef typename
            mpl::eval_if<
                mpl::less<index, typename Tuple::size>
              , detail::tuple_iterator_next_traits_impl<tuple_iterator_base<N,Tuple> >
              , mpl::identity<void_t>
            >::type
        next;

        typedef typename
            mpl::eval_if<
                mpl::less<index, typename Tuple::size>
              , detail::tuple_iterator_value_traits_impl<tuple_iterator_base<N,Tuple> >
              , mpl::identity<void_t>
            >::type
        type;

#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
        tuple_iterator(tuple_iterator const& i);
#else
        template <int N2, typename Tuple2>
        tuple_iterator(tuple_iterator<N2, Tuple2> const& i)
        : t(static_cast<tuple&>(i.get_tuple())) {}
#endif
        tuple_iterator(tuple& t);

        tuple&
        get_tuple() const;
    private:

        tuple& t;
    };

#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
    template <int N, typename Tuple>
    tuple_iterator<N,Tuple>::tuple_iterator(tuple_iterator const& i)
    : t(static_cast<tuple&>(i.get_tuple())) {}
#endif

    template <int N, typename Tuple>
    tuple_iterator<N,Tuple>::tuple_iterator(tuple& t)
    : t(t) {}

    template <int N, typename Tuple>
    typename tuple_iterator<N,Tuple>::tuple&
    tuple_iterator<N,Tuple>::get_tuple() const
    {
        return t;
    }
}}

#endif