Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/basic stacktrace"

From cppreference.com
< cpp‎ | utility
m
m (Member functions: templatize)
Line 58: Line 58:
  
 
{{dsc h2 | Capacity}}
 
{{dsc h2 | Capacity}}
{{dsc mem fun | cpp/utility/basic_stacktrace/empty | notes={{mark c++23}} | checks whether the {{tt|basic_stacktrace}} is empty}}
+
{{dsc inc | cpp/utility/basic_stacktrace/dsc empty}}
{{dsc mem fun | cpp/utility/basic_stacktrace/size | notes={{mark c++23}} | returns the number of stacktrace entries}}
+
{{dsc inc | cpp/utility/basic_stacktrace/dsc size}}
{{dsc mem fun | cpp/utility/basic_stacktrace/max_size | notes={{mark c++23}} | returns the maximum possible number of stacktrace entries}}
+
{{dsc inc | cpp/utility/basic_stacktrace/dsc max_size}}
  
 
{{dsc h2 | Element access}}
 
{{dsc h2 | Element access}}

Revision as of 00:47, 25 May 2021

 
 
 
 
Defined in header <stacktrace>
template< class Allocator >
class basic_stacktrace;
(1) (since C++23)
using stacktrace =
    std::basic_stacktrace<std::allocator<std::stacktrace_entry>>;
(2) (since C++23)
1) The basic_stacktrace class template represents a snapshot of the whole stacktrace or its given part. It satisfies the requirement of AllocatorAwareContainer, SequenceContainer, and ReversibleContainer, except that only move, assignment, swap, and operations for const-qualified sequence containers are supported, and the semantics of comparison functions are different from those required for a container.
2) Convenience type alias for the basic_stacktrace using the default std::allocator.

The invocation sequence of the current evaluation x0 in the current thread of execution is a sequence (x0, ..., xn) of evaluations such that, for i≥0, xi is within the function invocation xi+1.

A stacktrace is an approximate representation of an invocation sequence and consists of stacktrace entries.

A stacktrace entry represents an evaluation in a stacktrace. It is represented by std::stacktrace_entry in the C++ standard library.

Contents

Template parameters

Allocator - An allocator that is used to acquire/release memory and to construct/destroy the elements in that memory. The type must meet the requirements of Allocator. The program is ill-formed if Allocator::value_type is not std::stacktrace_entry.

Member types

Member type Definition
value_type(C++23) std::stacktrace_entry
const_reference(C++23) const value_type&
reference(C++23) value_type&
const_iterator(C++23) implementation-defined const LegacyRandomAccessIterator type that models random_access_iterator
iterator(C++23) const_iterator
reverse_iterator(C++23) std::reverse_iterator<iterator>
reverse_const_iterator(C++23) std::reverse_iterator<const_iterator>
difference_type(C++23) implementation-defined signed integer type
size_type(C++23) implementation-defined unsigned integer type
allocator_type(C++23) Allocator

Member functions

creates a new basic_stacktrace
(public member function) [edit]
destroys the basic_stacktrace
(public member function)
assigns to the basic_stacktrace
(public member function) [edit]
[static]
obtains the current stacktrace or its given part
(public static member function) [edit]
returns the associated allocator
(public member function)
Iterators
returns an iterator to the beginning
(public member function)
(C++23)
returns an iterator to the end
(public member function)
returns a reverse iterator to the beginning
(public member function)
(C++23)
returns a reverse iterator to the end
(public member function)
Capacity
checks whether the basic_stacktrace is empty
(public member function) [edit]
returns the number of stacktrace entries
(public member function) [edit]
returns the maximum possible number of stacktrace entries
(public member function) [edit]
Element access
access specified stacktrace entry
(public member function)
(C++23)
access specified stacktrace entry with bounds checking
(public member function)
Modifiers
(C++23)
swaps the contents
(public member function)

Non-member functions

compares the sizes and the contents of two basic_stacktrace values
(function template)
specializes the std::swap algorithm
(function template) [edit]
(C++23)
returns a string with a description of the basic_stacktrace
(function template) [edit]
performs stream output of basic_stracktrace
(function template) [edit]

Helper classes

hash support for std::basic_stacktrace
(class template specialization) [edit]

Notes

Support for custom allocators is provided for using basic_stacktrace on a hot path or in embedded environments. Users can allocate stacktrace_entry objects on the stack or in some other place, where appropriate.

Example

See also

representation of an evaluation in a stacktrace
(class) [edit]