|
using | base_type = any<Rest...> |
|
using | this_type = T |
|
using | reference = T& |
|
using | const_reference = const T& |
|
using | pointer = T* |
|
using | const_pointer = const T* |
|
|
| any (const this_type &value, const Rest &...other) |
|
| any (this_type &&value, Rest &&...other) |
|
| any (const any &other)=default |
|
| any (any &&other)=default |
|
any & | operator= (const any &)=default |
|
any & | operator= (any &&)=default |
|
template<typename V > |
V & | get () |
|
template<typename V > |
const V & | get () const |
|
| operator reference () |
|
| operator const_reference () const |
|
| operator pointer () |
|
| operator const_pointer () const |
|
The documentation for this class was generated from the following file: