15 template <std::
integral W>
auto operator()(W value)
const {
16 return rng::views::iota(value, std::numeric_limits<W>::max());
19 template <std::
integral W, std::
integral Bound>
20 auto operator()(W value, Bound bound)
const {
21 return rng::views::iota(value, W(bound));
25inline constexpr auto iota =
iota_fn_{};