MCPcopy Create free account
hub / github.com/bombela/backward-cpp / size

Method size

backward.hpp:776–780  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

774class StackTraceImplHolder : public StackTraceImplBase {
775public:
776 size_t size() const {
777 return (_stacktrace.size() >= skip_n_firsts())
778 ? _stacktrace.size() - skip_n_firsts()
779 : 0;
780 }
781 Trace operator[](size_t idx) const {
782 if (idx >= size()) {
783 return Trace();

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected