///////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2014-2014 // // 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) // // See http://www.boost.org/libs/intrusive for documentation. // ///////////////////////////////////////////////////////////////////////////// #ifndef BOOST_INTRUSIVE_DETAIL_ITERATOR_HPP #define BOOST_INTRUSIVE_DETAIL_ITERATOR_HPP #ifndef BOOST_CONFIG_HPP # include #endif #if defined(BOOST_HAS_PRAGMA_ONCE) # pragma once #endif #include #include #include #include namespace boost { namespace intrusive { using boost::movelib::iterator_traits; //////////////////// // iterator //////////////////// template struct iterator { typedef Category iterator_category; typedef T value_type; typedef Distance difference_type; typedef Pointer pointer; typedef Reference reference; }; //////////////////////////////////////// // iterator_[dis|en]able_if_tag //////////////////////////////////////// template struct iterator_enable_if_tag : ::boost::move_detail::enable_if_c < ::boost::move_detail::is_same < typename boost::intrusive::iterator_traits::iterator_category , Tag >::value , R> {}; template struct iterator_disable_if_tag : ::boost::move_detail::enable_if_c < !::boost::move_detail::is_same < typename boost::intrusive::iterator_traits::iterator_category , Tag >::value , R> {}; //////////////////////////////////////// // iterator_[dis|en]able_if_tag_difference_type //////////////////////////////////////// template struct iterator_enable_if_tag_difference_type : iterator_enable_if_tag::difference_type> {}; template struct iterator_disable_if_tag_difference_type : iterator_disable_if_tag::difference_type> {}; //////////////////// // advance //////////////////// template inline typename iterator_enable_if_tag::type iterator_advance(InputIt& it, Distance n) { while(n--) ++it; } template inline typename iterator_enable_if_tag::type iterator_advance(InputIt& it, Distance n) { while(n--) ++it; } template inline typename iterator_enable_if_tag::type iterator_advance(InputIt& it, Distance n) { for (; 0 < n; --n) ++it; for (; n < 0; ++n) --it; } template inline typename iterator_enable_if_tag::type iterator_advance(InputIt& it, Distance n) { it += n; } //////////////////// // distance //////////////////// template inline typename iterator_disable_if_tag_difference_type ::type iterator_distance(InputIt first, InputIt last) { typename iterator_traits::difference_type off = 0; while(first != last){ ++off; ++first; } return off; } template inline typename iterator_enable_if_tag_difference_type ::type iterator_distance(InputIt first, InputIt last) { typename iterator_traits::difference_type off = last - first; return off; } } //namespace intrusive } //namespace boost #endif //BOOST_INTRUSIVE_DETAIL_ITERATOR_HPP