@brief Allows to check that stack trace failed. @returns `true` if `this->size() == 0` @b Complexity: O(1) @b Async-Handler-Safety: \asyncsafe.
| 310 | /// |
| 311 | /// @b Async-Handler-Safety: \asyncsafe. |
| 312 | bool empty() const noexcept { return !size(); } |
| 313 | |
| 314 | const std::vector<boost::stacktrace::frame, Allocator>& as_vector() const noexcept { |
| 315 | return impl_; |
no test coverage detected