std::ranges::drop_view<V>::end
来自 cppreference.cn
constexpr auto end() requires (!/*simple-view*/<V>); |
(1) | (since C++20) |
constexpr auto end() const requires ranges::range<const V>; |
(2) | (since C++20) |
返回一个哨位或迭代器,表示 drop_view 的末尾。
[编辑] 返回值
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <ranges> int main() { namespace ranges = std::ranges; constexpr char url[]{"https://cppreference.cn"}; const auto p = std::distance(ranges::begin(url), ranges::find(url, '/')); auto site = ranges::drop_view{url, p + 2}; // drop the prefix "https://" for (auto it = site.begin(); it != site.end(); ++it) std::cout << *it; std::cout << '\n'; }
输出
cppreference.cn
[编辑] 参见
返回指向开头的迭代器 (公共成员函数) | |
(C++20) |
返回指向范围开头的迭代器 (定制点对象) |
(C++20) |
返回一个哨位,指示范围的末尾 (定制点对象) |