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/cons_iterator.hpp

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

    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_CONS_ITERATOR_HPP)
#define FUSION_ITERATOR_CONS_ITERATOR_HPP

#include <boost/mpl/aux_/na_fwd.hpp>
#include <boost/mpl/iterator_tags.hpp>
#include <boost/spirit/fusion/iterator/as_fusion_iterator.hpp>
#include <boost/spirit/fusion/iterator/detail/iterator_base.hpp>
#include <boost/spirit/fusion/sequence/detail/sequence_base.hpp>
#include <boost/spirit/fusion/iterator/detail/cons_iterator/deref_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/cons_iterator/next_traits.hpp>
#include <boost/spirit/fusion/iterator/detail/cons_iterator/value_traits.hpp>

namespace boost { namespace fusion
{
    struct nil;

    struct cons_iterator_tag;

    template <typename Cons = nil>
    struct cons_iterator : iterator_base<cons_iterator<Cons> >
    {
        typedef cons_iterator_tag tag;
        typedef Cons cons_type;
        typedef mpl::forward_iterator_tag category;

        #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
        typedef typename cons_detail::next_traits_impl<cons_iterator>::type next;
        typedef typename cons_detail::value_traits_impl<cons_iterator>::type type;
        #endif

        explicit cons_iterator(cons_type& cons_)
            : cons(cons_) {}

        cons_type& cons;
    private:
        cons_iterator& operator=(cons_iterator const&);
    };

    template <>
    struct cons_iterator<nil> : iterator_base<cons_iterator<nil> >
    {
        typedef cons_iterator_tag tag;
        typedef nil cons_type;
        typedef mpl::forward_iterator_tag category;

        #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
        typedef cons_iterator next;
        typedef mpl::na type;
        #endif

        cons_iterator() {}
        explicit cons_iterator(nil const&) {}
    };

    template <>
    struct cons_iterator<nil const> : iterator_base<cons_iterator<nil const> >
    {
        typedef cons_iterator_tag tag;
        typedef nil const cons_type;
        typedef mpl::forward_iterator_tag category;

        #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
        typedef cons_iterator next;
        typedef mpl::na type;
        #endif

        cons_iterator() {}
        explicit cons_iterator(nil const&) {}
    };
}}

#endif