// Boost.Range library // // Copyright Neil Groves 2010. 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) // // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_IRANGE_HPP_INCLUDED #define BOOST_RANGE_IRANGE_HPP_INCLUDED #include #include #include namespace boost { namespace range_detail { // integer_iterator is an iterator over an integer sequence that // is bounded only by the limits of the underlying integer // representation. // // This is useful for implementing the irange(first, last) // function. // // Note: // This use of this iterator and irange is appreciably less // performant than the corresponding hand-written integer // loop on many compilers. template class integer_iterator : public boost::iterator_facade< integer_iterator, Integer, boost::random_access_traversal_tag, Integer, std::ptrdiff_t > { typedef boost::iterator_facade< integer_iterator, Integer, boost::random_access_traversal_tag, Integer, std::ptrdiff_t > base_t; public: typedef typename base_t::value_type value_type; typedef typename base_t::difference_type difference_type; typedef typename base_t::reference reference; integer_iterator() : m_value() {} explicit integer_iterator(value_type x) : m_value(x) {} private: void increment() { ++m_value; } void decrement() { --m_value; } void advance(difference_type offset) { m_value += offset; } difference_type distance_to(const integer_iterator& other) const { return other.m_value - m_value; } bool equal(const integer_iterator& other) const { return m_value == other.m_value; } reference dereference() const { return m_value; } friend class ::boost::iterator_core_access; value_type m_value; }; // integer_iterator_with_step is similar in nature to the // integer_iterator but provides the ability to 'move' in // a number of steps specified at construction time. // // The three variable implementation provides the best guarantees // of loop termination upon various combinations of input. // // While this design is less performant than some less // safe alternatives, the use of ranges and iterators to // perform counting will never be optimal anyhow, hence // if optimal performance is desired a handcoded loop // is the solution. template class integer_iterator_with_step : public boost::iterator_facade< integer_iterator_with_step, Integer, boost::random_access_traversal_tag, Integer, std::ptrdiff_t > { typedef boost::iterator_facade< integer_iterator_with_step, Integer, boost::random_access_traversal_tag, Integer, std::ptrdiff_t > base_t; public: typedef typename base_t::value_type value_type; typedef typename base_t::difference_type difference_type; typedef typename base_t::reference reference; integer_iterator_with_step(value_type first, difference_type step, value_type step_size) : m_first(first) , m_step(step) , m_step_size(step_size) { } private: void increment() { ++m_step; } void decrement() { --m_step; } void advance(difference_type offset) { m_step += offset; } difference_type distance_to(const integer_iterator_with_step& other) const { return other.m_step - m_step; } bool equal(const integer_iterator_with_step& other) const { return m_step == other.m_step; } reference dereference() const { return m_first + (m_step * m_step_size); } friend class ::boost::iterator_core_access; value_type m_first; value_type m_step; difference_type m_step_size; }; } // namespace range_detail template class integer_range : public iterator_range< range_detail::integer_iterator > { typedef range_detail::integer_iterator iterator_t; typedef iterator_range base_t; public: integer_range(Integer first, Integer last) : base_t(iterator_t(first), iterator_t(last)) { } }; template class strided_integer_range : public iterator_range< range_detail::integer_iterator_with_step > { typedef range_detail::integer_iterator_with_step iterator_t; typedef iterator_range base_t; public: template strided_integer_range(Iterator first, Iterator last) : base_t(first, last) { } }; template integer_range irange(Integer first, Integer last) { BOOST_ASSERT( first <= last ); return integer_range(first, last); } template strided_integer_range irange(Integer first, Integer last, StepSize step_size) { BOOST_ASSERT( step_size != 0 ); BOOST_ASSERT( (step_size > 0) ? (last >= first) : (last <= first) ); typedef typename range_detail::integer_iterator_with_step iterator_t; const std::ptrdiff_t sz = static_cast(step_size >= 0 ? step_size : -step_size); const Integer l = step_size >= 0 ? last : first; const Integer f = step_size >= 0 ? first : last; const std::ptrdiff_t num_steps = (l + ((l-f) % sz) - f) / sz; BOOST_ASSERT(num_steps >= 0); return strided_integer_range( iterator_t(first, 0, step_size), iterator_t(first, num_steps, step_size)); } } // namespace boost #endif // include guard