命名空间
变体
操作

std::ranges::iota_view<W, Bound>::begin

来自 cppreference.com
< cpp‎ | ranges‎ | iota view
 
 
范围库
范围适配器
 
 
constexpr /*iterator*/ begin() const;
(自 C++20 起)

获取指向开始值的 迭代器

[编辑] 返回值

iterator {value_ }

[编辑] 示例

#include <iostream>
#include <ranges>
 
int main()
{
    auto iota{std::views::iota(2, 6)};
    auto iter{iota.begin()};
    while (iter != iota.end())
        std::cout << *iter++ << ' ';
    std::cout << '\n';
}

输出

2 3 4 5