std::experimental::any - cppreference.com (original) (raw)
![]() |
Merged into ISO C++ The functionality described on this page was merged into the mainline ISO C++ standard as of 3/2016, see std::any (since C++17) |
|---|
The class any describes a type-safe container for single values of any type.
An object of class
anystores an instance of any type that satisfies the constructor requirements or is empty, and this is referred to as the state of the classanyobject. The stored instance is called the contained object. Two states are equivalent if they are either both empty or if both are not empty and if the contained objects are equivalent.The non-member
any_castfunctions provide type-safe access to the contained object.
Implementations are encouraged to avoid dynamic allocations for small objects, but such an optimization may only be applied to types that for which std::is_nothrow_move_constructible returns true.
Contents
[edit] Member functions
| (constructor) | constructs an any object (public member function) [edit] |
|---|---|
| operator= | assigns an any object (public member function) [edit] |
| (destructor) | destroys an any object (public member function) [edit] |
| Modifiers | |
| clear | destroys contained object (public member function) [edit] |
| swap | swaps two any objects (public member function) [edit] |
| Observers | |
| empty | checks if object holds a value (public member function) [edit] |
| type | returns the typeid of the contained value (public member function) [edit] |
[edit] Non-member functions
| | swaps two any instances (function) [edit] | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | | type-safe access to the contained object (function template) [edit] |
[edit] Helper classes
| (library fundamentals TS) | exception thrown by the value-returning forms of any_cast on a type mismatch (class) [edit] |
|---|
