/// \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 auto operator()(Val to) const -> CPP_ret(iota_view)( // requires integral) { return {Val(), to}; } template auto operator()(Val from, Val to) const -> CPP_ret(iota_view)( // requires integral) { return {from, to}; } }; /// Inclusive range of indices: [from, to]. struct closed_indices_fn { template auto operator()(Val to) const -> CPP_ret(closed_iota_view)( // requires integral) { return {Val(), to}; } template auto operator()(Val from, Val to) const -> CPP_ret(closed_iota_view)( // requires integral) { 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 #endif // RANGES_V3_VIEW_INDICES_HPP