Represents a dynamically typed value of an arbitrary type.
To create a variant, either initialize it as empty, or with the create() method (or the equivalent constructor, if the type parameter can be deduced and is clear to the reader from the context).
To query the type of the contents in the variant, use isEmpty(), type(), and isType().
To access the value, you need to know the type as a compile-time constant (e.g., through branching based on isType()), and then use cast() or tryCast().
Methods in this class do not throw unless otherwise indicated.
This provides essentially the same functionality as boost::any.
|
| Variant () |
| Creates an empty variant value.
|
|
template<typename T , typename = typename std::enable_if<!std::is_same<T, Variant>::value>::type> |
| Variant (T &&value) |
| Creates a variant that holds the given value. More...
|
|
| Variant (const Variant &other) |
| Creates a deep copy of a variant. More...
|
|
| Variant (Variant &&other) noexcept |
| Move-constructs a variant.
|
|
Variant & | operator= (const Variant &other) |
| Assigns the variant. More...
|
|
Variant & | operator= (Variant &&other) noexcept |
| Move-assigns the variant.
|
|
bool | isEmpty () const |
| Whether any value is stored.
|
|
std::type_index | type () const |
| Returns the dynamic type of the value that is currently stored.
|
|
template<typename T > |
bool | isType () const |
| Returns whether the type stored matches the template parameter.
|
|
template<typename T > |
const T * | tryCast () const |
| Tries to get the value as the given type. More...
|
|
template<typename T > |
const T & | cast () const |
| Gets the value when the type is known. More...
|
|
template<typename T > |
T * | tryCastRef () |
| Tries to get the value as the given type as a non-const pointer. More...
|
|
template<typename T > |
T & | castRef () |
| Gets the value when the type is known as a modifiable reference. More...
|
|