GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::to_string(3) C++ Standard Libary std::to_string(3)

std::to_string - std::to_string


Defined in header <stacktrace>
template< class Allocator > (since C++23)
std::string to_string( const std::basic_stacktrace<Allocator>& st );


Returns a string with a description of st.


The description of a basic_stacktrace typically contains description of its entries,
although the number of lines is not required to be equal to size().


st - a basic_stacktrace whose description is to be returned


A string with a description of st.


May throw implementation-defined exceptions.


Custom allocators support for this function is not provided, because the
implementations usually require platform specific allocations, system calls and a
lot of CPU intensive work, while a custom allocator does not provide benefits for
this function as the platform specific operations take an order of magnitude more
time than the allocation.

// Run this code


#include <stacktrace>
#include <string>
#include <iostream>


int main()
{
auto trace = std::stacktrace::current();
std::cout << std::to_string(trace) << '\n';
}


0# 0x0000000000402D97 in ./prog.exe
1# __libc_start_main in /lib/x86_64-linux-gnu/libc.so.6
2# 0x0000000000402CA9 in ./prog.exe


to_string returns a string with a description of the stacktrace_entry
(C++23) (function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.