table of contents
| std::__unspecified__::exception_ptr(3cxx) | std::__unspecified__::exception_ptr(3cxx) |
NAME¶
std::__unspecified__::exception_ptr - An opaque pointer to an arbitrary exception.
SYNOPSIS¶
#include <exception>
Public Member Functions¶
constexpr exception_ptr (const exception_ptr &)
noexcept
constexpr exception_ptr (exception_ptr &&__o) noexcept
constexpr exception_ptr (nullptr_t) noexcept
const class std::type_info * __cxa_exception_type () const
noexcept
constexpr operator bool () const noexcept
constexpr exception_ptr & operator= (const exception_ptr &)
noexcept
constexpr exception_ptr & operator= (exception_ptr &&__o)
noexcept
constexpr void swap (exception_ptr &) noexcept
Friends¶
constexpr friend bool operator== (const exception_ptr
&, const exception_ptr &) noexcept=default
exception_ptr std::current_exception () noexcept
template<typename _Ex> constexpr exception_ptr
std::make_exception_ptr (_Ex) noexcept
void std::rethrow_exception (exception_ptr)
constexpr void swap (exception_ptr &__lhs, exception_ptr
&__rhs)
Related Symbols¶
(Note that these are not member symbols.)
constexpr void swap (exception_ptr &__lhs, exception_ptr
&__rhs)
Detailed Description¶
An opaque pointer to an arbitrary exception.
The actual name of this type is unspecified, so the alias std::exception_ptr should be used to refer to it.
Since
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
| libstdc++ |