std::basic_stacktrace<Allocator>::rend, std::basic_stacktrace<Allocator>::crend

来自cppreference.com
 
 
 
 
const_reverse_iterator rend()  const noexcept;
(1) (C++23 起)
const_reverse_iterator crend() const noexcept;
(2) (C++23 起)

返回指向逆向 basic_stacktrace 的末尾条目后一位置的逆向迭代器。它对应于原 basic_stacktrace 的首个条目之前的迭代器。此迭代器表现为占位符,试图解引用它导致未定义行为。

range-rbegin-rend.svg

目录