const_iterator cbegin() const noexcept; // (1) C++23
概要
先頭の要素を指す読み取り専用イテレータを取得する。
戻り値
スタックトレース履歴の先頭要素を指す読み取り専用イテレータを返す。ただし、empty()
がtrue
である場合、cend()
と同じ値を返す。
例
#include <iostream>
#include <stacktrace>
#include <algorithm>
void g() {
std::stacktrace st = std::stacktrace::current();
std::for_each(st.cbegin(), st.cend(), [](const std::stacktrace_entry& x) {
std::cout << x << std::endl;
});
}
void f() {
g();
}
int main() {
f();
}
xxxxxxxxxx
#include <iostream>
#include <stacktrace>
#include <algorithm>
void g() {
std::stacktrace st = std::stacktrace::current();
std::for_each(st.cbegin(), st.cend(), [](const std::stacktrace_entry& x) {
std::cout << x << std::endl;
});
}
void f() {
g();
}
int main() {
f();
}
出力例 (GCC)
g() at /app/example.cpp:6
f() at /app/example.cpp:13
main at /app/example.cpp:17
at :0
__libc_start_main at :0
_start at :0
バージョン
言語
- C++23
処理系
- Clang: ??
- GCC: 12 ✅
- Visual C++: ??