命名空间
变体
操作

std::span<T,Extent>::rend,std::span<T,Extent>::crend

来自 cppreference.com
< cpp‎ | 容器‎ | span
constexpr reverse_iterator rend() const noexcept;
(1) (自 C++20 起)
constexpr const_reverse_iterator crend() const noexcept;
(2) (自 C++23 起)

返回一个指向反转后的 span 的最后一个元素后面的元素的反向迭代器。它对应于非反转 span 的第一个元素之前的元素。该元素充当占位符,尝试访问它会导致未定义的行为。

range-rbegin-rend.svg

内容

[编辑] 参数

(无)

[编辑] 返回值

指向最后一个元素后面的元素的反向迭代器。

[编辑] 复杂度

常数。

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <span>
#include <string_view>
 
void ascending(const std::span<const std::string_view> data,
               const std::string_view term)
{
    std::for_each(data.begin(), data.end(),
        [](const std::string_view x) { std::cout << x << ' '; });
    std::cout << term;
}
 
void descending(const std::span<const std::string_view> data,
                const std::string_view term)
{
    std::for_each(data.rbegin(), data.rend(),
        [](const std::string_view x) { std::cout << x << ' '; });
    std::cout << term;
}
 
int main()
{
    constexpr std::string_view bars[]{"▁","▂","▃","▄","▅","▆","▇","█"};
    ascending(bars, " ");
    descending(bars, "\n");
}

输出

▁ ▂ ▃ ▄ ▅ ▆ ▇ █  █ ▇ ▆ ▅ ▄ ▃ ▂ ▁

[编辑] 另请参阅

返回指向开头的反向迭代器
(公有成员函数) [编辑]
(C++14)
返回容器或数组的反向结束迭代器
(函数模板) [编辑]