Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::stackt...description(3)  C++ Standard Libary std::stackt...description(3)

NAME
       std::stacktrace_entry::description - std::stacktrace_entry::description

Synopsis
	  std::string description() const;  (since C++23)

	  Returns a description	of the evaluation represented by *this on suc-
       cess, or	an empty
	  string  on failure other than	allocation failure, e.g. when *this is
       empty.

Parameters
	  (none)

Return value
	  A description	of the represented evaluation  on  success,  an	 empty
       string on failure
	  other	than allocation	failure.

Exceptions
	  Throws  std::bad_alloc if memory for the internal data structures or
       the resulting
	  string cannot	be allocated.

Notes
	  Custom allocators support for	this function is not provided, because
       the
	  implementations usually require platform specific allocations,  sys-
       tem 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.

Example
	   This	section	is incomplete
	   Reason: no example

Category:
	    * Todo no example

http://cppreference.com		  2024.06.10	  std::stackt...description(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::stacktrace_entry::description&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help