命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | ranges‎ | iota view
 
 
范围库
范围适配器
 
 
constexpr auto end() const;
(1) (自 C++20 起)
constexpr /*iterator*/ end() const requires std::same_as<W, Bound>;
(2) (自 C++20 起)
1) 获取一个 哨兵,表示哨兵值
2) 获取一个 迭代器 指向哨兵值。

[编辑] 返回值

1) 如上所述。
2) iterator {bound_ }

[编辑] 示例

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

输出

2 3 4 5