/// \file // Range v3 library // // Copyright Eric Niebler 2013-present // Copyright Gonzalo Brito Gadeschi // // 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) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_VIEW_INDICES_HPP #define RANGES_V3_VIEW_INDICES_HPP #include #include #include #include #include #include namespace ranges { namespace views { /// Half-open range of indices: [from, to). struct indices_fn : iota_view { indices_fn() = default; template(typename Val)( requires integral) iota_view operator()(Val to) const { return {Val(), to}; } template(typename Val)( requires integral) iota_view operator()(Val from, Val to) const { return {from, to}; } }; /// Inclusive range of indices: [from, to]. struct closed_indices_fn { template(typename Val)( requires integral) closed_iota_view operator()(Val to) const { return {Val(), to}; } template(typename Val)( requires integral) closed_iota_view operator()(Val from, Val to) const { return {from, to}; } }; /// \relates indices_fn /// \ingroup group-views RANGES_INLINE_VARIABLE(indices_fn, indices) /// \relates closed_indices_fn /// \ingroup group-views RANGES_INLINE_VARIABLE(closed_indices_fn, closed_indices) } // namespace views } // namespace ranges #include #endif // RANGES_V3_VIEW_INDICES_HPP