QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
#include "packed_backtrace.hpp"
Classes | |
class | iterator |
The iterator type. More... | |
Public Types | |
using | value_type = FramePtrType |
The type stored in the container. | |
using | const_value_type = typename detail::constify< FramePtrType >::type |
The const type stored in the container. | |
using | size_type = size_t |
The size type. | |
using | difference_type = ptrdiff_t |
The difference type. | |
using | reference = FramePtrType |
The reference type. | |
using | const_reference = const FramePtrType |
The const reference type. | |
using | pointer = FramePtrType * |
The pointer type. | |
using | const_pointer = const FramePtrType * |
The const pointer type. | |
using | const_iterator = iterator |
The const iterator type. | |
using | reverse_iterator = std::reverse_iterator< iterator > |
The reverse iterator type. | |
using | const_reverse_iterator = std::reverse_iterator< const_iterator > |
The const reverse iterator type. | |
Public Member Functions | |
bool | empty () const noexcept |
Returns true if the index is empty. | |
size_type | size () const noexcept |
Returns the number of items in the backtrace. | |
size_type | max_size () const noexcept |
Returns the maximum number of items in the backtrace. | |
iterator | begin () noexcept |
Returns an iterator to the first item in the backtrace. | |
const_iterator | begin () const noexcept |
Returns an iterator to the first item in the backtrace. | |
const_iterator | cbegin () const noexcept |
Returns an iterator to the first item in the backtrace. | |
iterator | end () noexcept |
Returns an iterator to the item after the last in the backtrace. | |
const_iterator | end () const noexcept |
Returns an iterator to the item after the last in the backtrace. | |
const_iterator | cend () const noexcept |
Returns an iterator to the item after the last in the backtrace. | |
value_type | operator[] (size_type i) const noexcept |
Returns the specified element, unchecked. | |
value_type | at (size_type i) const |
Returns the specified element, checked. | |
void | swap (packed_backtrace &o) noexcept |
Swaps with another instance. | |
void | assign (span::span< const_value_type > input) noexcept |
Assigns a raw stack backtrace to the packed storage. | |
Protected Member Functions | |
packed_backtrace (span::span< const char > storage) | |
packed_backtrace (span::span< char > storage, std::nullptr_t) | |
Friends | |
class | iterator |
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::value_type = FramePtrType |
The type stored in the container.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_value_type = typename detail::constify<FramePtrType>::type |
The const type stored in the container.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::size_type = size_t |
The size type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::difference_type = ptrdiff_t |
The difference type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::reference = FramePtrType |
The reference type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_reference = const FramePtrType |
The const reference type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::pointer = FramePtrType * |
The pointer type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_pointer = const FramePtrType * |
The const pointer type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_iterator = iterator |
The const iterator type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::reverse_iterator = std::reverse_iterator<iterator> |
The reverse iterator type.
using quickcpplib::_xxx::packed_backtrace::impl::packed_backtrace< FramePtrType, FrameTypeSize >::const_reverse_iterator = std::reverse_iterator<const_iterator> |
The const reverse iterator type.
|
inlineexplicitprotected |
|
inlineexplicitprotected |
|
inlinenoexcept |
Returns true if the index is empty.
|
inlinenoexcept |
Returns the number of items in the backtrace.
|
inlinenoexcept |
Returns the maximum number of items in the backtrace.
|
inlinenoexcept |
Returns an iterator to the first item in the backtrace.
|
inlinenoexcept |
Returns an iterator to the first item in the backtrace.
|
inlinenoexcept |
Returns an iterator to the first item in the backtrace.
|
inlinenoexcept |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexcept |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexcept |
Returns an iterator to the item after the last in the backtrace.
|
inlinenoexcept |
Returns the specified element, unchecked.
|
inline |
Returns the specified element, checked.
|
inlinenoexcept |
|
inlinenoexcept |
Assigns a raw stack backtrace to the packed storage.
|
friend |