/// \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 namespace ranges { /// \addtogroup group-numerics /// @{ struct iota_fn { template auto operator()(O first, S last, T val) const -> CPP_ret(O)( // requires output_iterator && sentinel_for && weakly_incrementable) { for(; first != last; ++first, ++val) *first = detail::as_const(val); return first; } template auto operator()(Rng && rng, T val) const -> CPP_ret(safe_iterator_t)( // requires output_range && weakly_incrementable) { return (*this)(begin(rng), end(rng), detail::move(val)); } }; RANGES_INLINE_VARIABLE(iota_fn, iota) /// @} } // namespace ranges #endif