std::experimental::any(3cxx) | std::experimental::any(3cxx) |
std::experimental::any - A type-safe container of any type.
any () noexcept
Default constructor, creates an empty object. template<typename _ValueType
, typename _Tp = _Decay<_ValueType>, typename _Mgr =
_Manager<_Tp>, typename enable_if<
is_constructible< _Tp, _ValueType && >::value, bool
>::type = true> any (_ValueType &&__value)
Construct with a copy of __value as the contained object.
template<typename _ValueType , typename _Tp = _Decay<_ValueType>,
typename _Mgr = _Manager<_Tp>, typename
enable_if<!is_constructible< _Tp, _ValueType &&
>::value, bool >::type = false> any (_ValueType
&&__value)
Construct with a copy of __value as the contained object. any
(any &&__other) noexcept
Move constructor, transfer the state from __other. any (const
any &__other)
Copy constructor, copies the state of __other. ~any ()
Destructor, calls clear() void clear () noexcept
If not empty, destroy the contained object. bool empty () const
noexcept
Reports whether there is a contained object or not. template<typename
_ValueType > enable_if_t<!is_same< any,
decay_t< _ValueType > >::value, any & >
operator= (_ValueType &&__rhs)
Store a copy of __rhs as the contained object. any &
operator= (any &&__rhs) noexcept
Move assignment operator. any & operator= (const any
&__rhs)
Copy the state of another object. void swap (any &__rhs)
noexcept
Exchange state with another object. const type_info & type
() const noexcept
The typeid of the contained object, or typeid(void) if empty.
template<typename _Tp > static constexpr bool
__is_valid_cast ()
template<typename _Tp > enable_if_t<
is_object< _Tp >::value, 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.
Definition at line 90 of file experimental/any.
Default constructor, creates an empty object.
Definition at line 129 of file experimental/any.
Copy constructor, copies the state of __other.
Definition at line 132 of file experimental/any.
Move constructor, transfer the state from __other.
Postcondition
Definition at line 149 of file experimental/any.
Construct with a copy of __value as the contained object.
Definition at line 166 of file experimental/any.
Construct with a copy of __value as the contained object.
Definition at line 179 of file experimental/any.
Destructor, calls clear()
Definition at line 188 of file experimental/any.
Definition at line 287 of file experimental/any.
If not empty, destroy the contained object.
Definition at line 230 of file experimental/any.
Reports whether there is a contained object or not.
Definition at line 272 of file experimental/any.
Store a copy of __rhs as the contained object.
Definition at line 221 of file experimental/any.
Move assignment operator.
Postcondition
Definition at line 204 of file experimental/any.
Copy the state of another object.
Definition at line 193 of file experimental/any.
Exchange state with another object.
Definition at line 240 of file experimental/any.
The typeid of the contained object, or typeid(void) if empty.
Definition at line 276 of file experimental/any.
Generated automatically by Doxygen for libstdc++ from the source code.
Thu Feb 16 2023 | libstdc++ |