std::counted_iterator<I>::count
来自cppreference.com
< cpp | iterator | counted iterator
constexpr std::iter_difference_t<I> count() const noexcept; |
(C++20 起) | |
返回底层长度,即到末尾的距离。
参数
(无)
返回值
底层长度。
示例
运行此代码
输出:
2 3 4
参阅
(C++20) |
访问底层迭代器 (公开成员函数) |