/// \file // Range v3 library // // Copyright Eric Niebler 2013-present // // 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_NUMERIC_IOTA_HPP #define RANGES_V3_NUMERIC_IOTA_HPP #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-numerics /// @{ struct iota_fn { template(typename O, typename S, typename T)( requires output_iterator AND sentinel_for AND weakly_incrementable) O operator()(O first, S last, T val) const { for(; first != last; ++first, ++val) *first = detail::as_const(val); return first; } template(typename Rng, typename T)( requires output_range AND weakly_incrementable) borrowed_iterator_t operator()(Rng && rng, T val) const // { return (*this)(begin(rng), end(rng), detail::move(val)); } }; RANGES_INLINE_VARIABLE(iota_fn, iota) /// @} } // namespace ranges #include #endif