/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout 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) =============================================================================*/ #ifndef SPROUT_RANGE_ADAPTOR_COUNTING_HPP #define SPROUT_RANGE_ADAPTOR_COUNTING_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace adaptors { // // counting_range // template class counting_range : public sprout::adaptors::detail::adapted_range_default< Range, sprout::counting_iterator > { public: typedef sprout::adaptors::detail::adapted_range_default< Range, sprout::counting_iterator > base_type; typedef typename base_type::range_type range_type; typedef typename base_type::iterator iterator; typedef typename base_type::value_type value_type; public: counting_range() = default; counting_range(counting_range const&) = default; explicit SPROUT_CONSTEXPR counting_range(range_type& range) : base_type( iterator(), sprout::next(iterator(), sprout::size(range)) ) {} SPROUT_CONSTEXPR counting_range( range_type& range, value_type const& first ) : base_type( iterator(first), sprout::next(iterator(first), sprout::size(range)) ) {} SPROUT_CONSTEXPR counting_range( range_type& range, value_type const& first, value_type const& last ) : base_type( iterator(first), sprout::size(range) < last - first ? sprout::next(iterator(first), sprout::size(range)) : iterator(last) ) {} }; template class counting_range : public sprout::range::range_container< sprout::counting_iterator > { public: typedef sprout::range::range_container< sprout::counting_iterator > base_type; typedef typename base_type::iterator iterator; typedef typename base_type::value_type value_type; public: counting_range() = default; counting_range(counting_range const&) = default; explicit SPROUT_CONSTEXPR counting_range(value_type const& first) : base_type( iterator(first), iterator() ) {} SPROUT_CONSTEXPR counting_range( value_type const& first, value_type const& last ) : base_type( iterator(first), iterator(last) ) {} }; // // counting_forwarder // class counting_forwarder { public: template SPROUT_CONSTEXPR sprout::adaptors::counting_range operator()(Incrementable const& first) const { return sprout::adaptors::counting_range(first); } template SPROUT_CONSTEXPR sprout::adaptors::counting_range operator()(Incrementable const& first, Incrementable const& last) const { return sprout::adaptors::counting_range(first, last); } }; // // counting // namespace { SPROUT_STATIC_CONSTEXPR sprout::adaptors::counting_forwarder counting = {}; } // anonymous-namespace // // operator| // template inline SPROUT_CONSTEXPR sprout::adaptors::counting_range< Incrementable, typename std::remove_reference::type>::type > operator|(Range&& lhs, sprout::adaptors::counting_range const& rhs) { return sprout::adaptors::counting_range< Incrementable, typename std::remove_reference::type>::type >( sprout::lvalue_forward(lhs), *rhs.begin(), *rhs.end() ); } } // namespace adaptors // // container_construct_traits // template struct container_construct_traits > : public sprout::container_construct_traits::base_type> {}; } // namespace sprout #endif // #ifndef SPROUT_RANGE_ADAPTOR_COUNTING_HPP