@param frame_no Zero based index of frame to return. 0 is the function index where stacktrace was constructed and index close to this->size() contains function `main()`. @returns frame that references the actual frame info, stored inside *this. @b Complexity: O(1). @b Async-Handler-Safety: \asyncsafe.
| 257 | /// |
| 258 | /// @b Async-Handler-Safety: \asyncsafe. |
| 259 | const_reference operator[](std::size_t frame_no) const noexcept { |
| 260 | return impl_[frame_no]; |
| 261 | } |
| 262 | |
| 263 | /// @b Complexity: O(1) |
| 264 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected