std::experimental::basic_string_view<CharT,Traits>::rend, std::experimental::basic_string_view<CharT,Traits>::crend
来自 cppreference.cn
< cpp | experimental | basic string view
constexpr const_reverse_iterator rend() const noexcept; |
(库基础 TS) | |
constexpr const_reverse_iterator crend() const noexcept; |
(库基础 TS) | |
返回指向反向视图中最后一个字符之后字符的反向迭代器。它对应于非反向视图中第一个字符之前的字符。此字符充当占位符,尝试访问它会导致未定义的行为。
目录 |
[edit] 参数
(无)
[edit] 返回值
const_reverse_iterator
to the character following the last character.
[edit] 复杂度
常数
[edit] 参见
返回指向开头的反向迭代器 (public member function) |