2 #ifndef BOOST_MPL_SET_AUX_ITERATOR_HPP_INCLUDED
3 #define BOOST_MPL_SET_AUX_ITERATOR_HPP_INCLUDED
5 // Copyright Aleksey Gurtovoy 2003-2004
6 // Copyright David Abrahams 2003-2004
8 // Distributed under the Boost Software License, Version 1.0.
9 // (See accompanying file LICENSE_1_0.txt or copy at
10 // http://www.boost.org/LICENSE_1_0.txt)
12 // See http://www.boost.org/libs/mpl for documentation.
14 // $Source: /cvsroot/boost/boost/boost/mpl/set/aux_/iterator.hpp,v $
15 // $Date: 2005/06/18 22:03:09 $
18 #include <boost/mpl/set/aux_/set0.hpp>
19 #include <boost/mpl/has_key.hpp>
20 #include <boost/mpl/iterator_tags.hpp>
21 #include <boost/mpl/next.hpp>
22 #include <boost/mpl/eval_if.hpp>
23 #include <boost/mpl/if.hpp>
24 #include <boost/mpl/identity.hpp>
25 #include <boost/mpl/aux_/config/ctps.hpp>
27 namespace boost { namespace mpl {
29 // used by 's_iter_impl'
30 template< typename Set, typename Tail > struct s_iter;
32 template< typename Set, typename Tail > struct s_iter_impl
35 typedef forward_iterator_tag category;
36 typedef typename Tail::item_::type type;
38 #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
39 typedef typename eval_if<
40 has_key< Set,typename Tail::next_::type >
41 , identity< s_iter<Set,typename Tail::next_> >
42 , next< s_iter<Set,typename Tail::next_> >
47 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
49 template< typename Set, typename Tail >
50 struct next< s_iter<Set,Tail> >
52 has_key< Set,typename Tail::next_::type >
53 , identity< s_iter<Set,typename Tail::next_> >
54 , next< s_iter<Set,typename Tail::next_> >
59 template< typename Set >
60 struct next< s_iter<Set,set0<> > >
62 typedef s_iter<Set,set0<> > type;
65 template< typename Set, typename Tail > struct s_iter
66 : s_iter_impl<Set,Tail>
70 template< typename Set > struct s_iter<Set, set0<> >
72 typedef forward_iterator_tag category;
77 template< typename Set >
80 typedef forward_iterator_tag category;
81 typedef s_iter<Set,set0<> > next;
84 template< typename Set, typename Tail > struct s_iter
86 is_same< Tail,set0<> >
88 , s_iter_impl<Set,Tail>
93 #endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
97 #endif // BOOST_MPL_SET_AUX_ITERATOR_HPP_INCLUDED