C++ Actor Framework 0.18
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Attributes | Related Functions | List of all members
caf::variant< Ts > Class Template Reference

A variant represents always a valid value of one of the types Ts.... More...

#include <variant.hpp>

Public Types

using types = detail::type_list< Ts... >
 
using type0 = typename detail::tl_at< types, 0 >::type
 

Public Member Functions

template<class U >
 variant (U &&arg) noexcept(std::is_rvalue_reference< U && >::value &&nothrow_move_assign)
 
 variant (variant &&other) noexcept(nothrow_move_construct)
 
 variant (const variant &other)
 
variantoperator= (const variant &other)
 
variantoperator= (variant &&other) noexcept(nothrow_move_assign)
 
template<class U >
variantoperator= (U &&arg) noexcept(nothrow_move_assign)
 
constexpr size_t index () const
 
bool valueless_by_exception () const
 

Static Public Attributes

static constexpr int max_type_id = sizeof...(Ts) - 1
 Stores the ID for the last type.
 
static constexpr bool nothrow_move_construct
 Stores whether all types are nothrow constructible.
 
static constexpr bool nothrow_move_assign
 Stores whether all types are nothrow assignable and constructible.
 

Related Functions

(Note that these are not member functions.)

template<class... Ts>
bool operator== (const variant< Ts... > &x, const variant< Ts... > &y)
 
template<class... Ts>
bool operator!= (const variant< Ts... > &x, const variant< Ts... > &y)
 
template<class... Ts>
bool operator< (const variant< Ts... > &x, const variant< Ts... > &y)
 
template<class... Ts>
bool operator> (const variant< Ts... > &x, const variant< Ts... > &y)
 
template<class... Ts>
bool operator<= (const variant< Ts... > &x, const variant< Ts... > &y)
 
template<class... Ts>
bool operator>= (const variant< Ts... > &x, const variant< Ts... > &y)
 

Detailed Description

template<class... Ts>
class caf::variant< Ts >

A variant represents always a valid value of one of the types Ts....

Member Data Documentation

◆ nothrow_move_assign

template<class... Ts>
constexpr bool caf::variant< Ts >::nothrow_move_assign
staticconstexpr
Initial value:
=
&& detail::conjunction<
std::is_nothrow_move_assignable<Ts>::value...
>::value
static constexpr bool nothrow_move_construct
Stores whether all types are nothrow constructible.
Definition: variant.hpp:116

Stores whether all types are nothrow assignable and constructible.

We need to check both, since assigning to a variant results in a move-construct unless the before and after types are the same.

◆ nothrow_move_construct

template<class... Ts>
constexpr bool caf::variant< Ts >::nothrow_move_construct
staticconstexpr
Initial value:
=
detail::conjunction<
std::is_nothrow_move_constructible<Ts>::value...
>::value

Stores whether all types are nothrow constructible.


The documentation for this class was generated from the following files: