#ifndef SPROUT_RANGE_ADAPTOR_COUNTING_HPP #define SPROUT_RANGE_ADAPTOR_COUNTING_HPP #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace adaptors { // // counting_range // template class counting_range : public sprout::range::range_container< sprout::counting_iterator > , public sprout::detail::container_nosy_static_size , public sprout::detail::container_nosy_fixed_size { public: typedef Range range_type; typedef sprout::range::range_container< sprout::counting_iterator > base_type; typedef typename base_type::iterator iterator; typedef typename base_type::value_type value_type; typedef typename base_type::difference_type difference_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; typedef typename base_type::difference_type difference_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: typedef typename sprout::container_construct_traits::copied_type copied_type; public: template static SPROUT_CONSTEXPR copied_type deep_copy(Cont&& cont) { return sprout::range::fixed::copy(sprout::forward(cont), sprout::pit()); } template static SPROUT_CONSTEXPR copied_type make(Args&&... args) { return sprout::make(sprout::forward(args)...); } template static SPROUT_CONSTEXPR copied_type remake( Cont&& cont, typename sprout::container_traits >::difference_type size, Args&&... args ) { return sprout::remake(sprout::forward(cont), size, sprout::forward(args)...); } }; } // namespace sprout #endif // #ifndef SPROUT_RANGE_ADAPTOR_COUNTING_HPP