std::ranges::stride_view<V>::iterator<Const>::base
来自cppreference.com
范围库
|
| 范围原语 | |||
|
| 范围概念 | |||||||
|
| 范围工厂 | ||||||
|
| 范围适配器 | ||||||||||||||||||||||
|
|
| 辅助项 | |||||
|
|
constexpr ranges::iterator_t<Base> base() &&;
|
(1) | (C++23 起) |
constexpr const ranges::iterator_t<Base>& base() const& noexcept;
|
(2) | (C++23 起) |
返回底层迭代器。令 current_ 为底层迭代器。
1) 等价于:
return std::move(current_);。2) 等价于:
return current_;。参数
(无)
示例
| 本节未完成 原因:暂无示例 |