MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / operator[]

Method operator[]

src/backward.h:820–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

818public:
819 size_t size() const { return (_stacktrace.size() >= skip_n_firsts()) ? _stacktrace.size() - skip_n_firsts() : 0; }
820 Trace operator[](size_t idx) const
821 {
822 if (idx >= size()) {
823 return Trace();
824 }
825 return Trace(_stacktrace[idx + skip_n_firsts()], idx);
826 }
827 void* const* begin() const
828 {
829 if (size()) {

Callers

nothing calls this directly

Calls 1

TraceClass · 0.85

Tested by

no test coverage detected