blob: 914a27d4fbef32a35a2c4430c2108770faa73abd [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED
3#define NDNBOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07004
5// Copyright Aleksey Gurtovoy 2000-2004
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: iterator.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/iterator_tags.hpp>
18#include <ndnboost/mpl/next_prior.hpp>
19#include <ndnboost/mpl/deref.hpp>
20#include <ndnboost/mpl/list/aux_/item.hpp>
21#include <ndnboost/mpl/aux_/na.hpp>
22#include <ndnboost/mpl/aux_/lambda_spec.hpp>
23#include <ndnboost/mpl/aux_/config/ctps.hpp>
24
25namespace ndnboost { namespace mpl {
26
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027#if !defined(NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070028
29template< typename Node >
30struct l_iter
31{
32 typedef aux::l_iter_tag tag;
33 typedef forward_iterator_tag category;
34};
35
36template< typename Node >
37struct deref< l_iter<Node> >
38{
39 typedef typename Node::item type;
40};
41
42template< typename Node >
43struct next< l_iter<Node> >
44{
45 typedef l_iter< typename Node::next > type;
46};
47
Jeff Thompson3d613fd2013-10-15 15:39:04 -070048#else // NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070049
50template< typename Node >
51struct l_iter
52{
53 typedef aux::l_iter_tag tag;
54 typedef forward_iterator_tag category;
55 typedef typename Node::item type;
56 typedef l_iter< typename mpl::next<Node>::type > next;
57};
58
59#endif
60
61
62template<> struct l_iter<l_end>
63{
64 typedef aux::l_iter_tag tag;
65 typedef forward_iterator_tag category;
Jeff Thompson3d613fd2013-10-15 15:39:04 -070066#if defined(NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070067 typedef na type;
68 typedef l_iter next;
69#endif
70};
71
Jeff Thompson3d613fd2013-10-15 15:39:04 -070072NDNBOOST_MPL_AUX_PASS_THROUGH_LAMBDA_SPEC(1, l_iter)
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070073
74}}
75
Jeff Thompson3d613fd2013-10-15 15:39:04 -070076#endif // NDNBOOST_MPL_LIST_AUX_ITERATOR_HPP_INCLUDED