|
libstdc++
|
Public Member Functions | |
| any () noexcept | |
| any (const any &__other) | |
| any (any &&__other) noexcept | |
| template<typename _ValueType , typename _Tp = _Decay<_ValueType>, typename _Mgr = _Manager<_Tp>> | |
| any (_ValueType &&__value) | |
| ~any () | |
| void | clear () noexcept |
| bool | empty () const noexcept |
| any & | operator= (const any &__rhs) |
| any & | operator= (any &&__rhs) noexcept |
| template<typename _ValueType > | |
| any & | operator= (_ValueType &&__rhs) |
| void | swap (any &__rhs) noexcept |
| const type_info & | type () const noexcept |
Static Public Member Functions | |
| template<typename _Tp > | |
| static constexpr bool | __is_valid_cast () |
Friends | |
| template<typename _Tp > | |
| void * | __any_caster (const any *__any) |
A type-safe container of any type.
An any object's state is either empty or it stores a contained object of CopyConstructible type.
| std::experimental::fundamentals_v1::any::any | ( | ) | [inline] |
Default constructor, creates an empty object.
Definition at line 119 of file any.
Referenced by operator=().
| std::experimental::fundamentals_v1::any::any | ( | const any & | __other | ) | [inline] |
| std::experimental::fundamentals_v1::any::any | ( | any && | __other | ) | [inline] |
| std::experimental::fundamentals_v1::any::any | ( | _ValueType && | __value | ) | [inline] |
| std::experimental::fundamentals_v1::any::~any | ( | ) | [inline] |
| void std::experimental::fundamentals_v1::any::clear | ( | ) | [inline] |
| bool std::experimental::fundamentals_v1::any::empty | ( | ) | const [inline] |
| any& std::experimental::fundamentals_v1::any::operator= | ( | _ValueType && | __rhs | ) | [inline] |
| void std::experimental::fundamentals_v1::any::swap | ( | any & | __rhs | ) | [inline] |
| const type_info& std::experimental::fundamentals_v1::any::type | ( | ) | const [inline] |