|
template<typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>> |
| unbounded_variant () |
|
template<typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>> |
| unbounded_variant (Pmr *const mem_res) |
|
| unbounded_variant (const unbounded_variant &other)=default |
|
| unbounded_variant (unbounded_variant &&other) noexcept=default |
|
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value && !is_in_place_type<ValueType>::value>> |
| unbounded_variant (ValueType &&value) |
|
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value && !is_in_place_type<ValueType>::value>> |
| unbounded_variant (Pmr *const mem_res, ValueType &&value) |
|
template<typename ValueType, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>> |
| unbounded_variant (in_place_type_t< ValueType >, Args &&... args) |
|
template<typename ValueType, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>> |
| unbounded_variant (Pmr *const mem_res, in_place_type_t< ValueType >, Args &&... args) |
|
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>> |
| unbounded_variant (in_place_type_t< ValueType >, std::initializer_list< Up > list, Args &&... args) |
|
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>> |
| unbounded_variant (Pmr *const mem_res, in_place_type_t< ValueType >, std::initializer_list< Up > list, Args &&... args) |
|
| ~unbounded_variant () |
|
unbounded_variant & | operator= (const unbounded_variant &rhs) |
|
unbounded_variant & | operator= (unbounded_variant &&rhs) noexcept |
|
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value>> |
unbounded_variant & | operator= (ValueType &&value) |
|
template<typename ValueType, typename... Args, typename Tp = std::decay_t<ValueType>> |
Tp * | emplace (Args &&... args) |
|
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>> |
Tp * | emplace (std::initializer_list< Up > list, Args &&... args) |
|
void | swap (unbounded_variant &rhs) noexcept(Movable) |
|
template<typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>> |
CETL_NODISCARD Pmr * | get_memory_resource () const noexcept |
|
template<typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>> |
void | reset (Pmr *const mem_res) noexcept |
|
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
class cetl::unbounded_variant< Footprint, Copyable, Movable, Alignment, Pmr >
The class unbounded_variant
describes a type-safe container for single values of unbounded_variant copy and/or move constructible type.
Size of a contained value must be less than or equal to Footprint
to benefit small object optimization, and it can't be bigger than Footprint
in case of disabled Polymorphic Memory Resource (PMR) support.
- Template Parameters
-
Footprint | Maximum size of an in-place stored object (in bytes). |
Copyable | Determines whether a contained object is copy constructible. |
Movable | Determines whether a contained object is move constructible. |
Alignment | Alignment of storage for a contained object. |
Pmr | Type of Polymorphic Memory Resource (PMR). Use void to disable PMR support. |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value && !is_in_place_type<ValueType>::value>>
Constructs an unbounded_variant
object by forwarding a value into variant's storage.
Size of the value must be less than or equal to Footprint
. Any failure during the value forwarding will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. Its size must be less than or equal to Footprint in case of PMR support. |
- Parameters
-
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value && !is_in_place_type<ValueType>::value>>
cetl::unbounded_variant< Footprint, Copyable, Movable, Alignment, Pmr >::unbounded_variant |
( |
Pmr *const | mem_res, |
|
|
ValueType && | value ) |
|
inline |
Constructs an unbounded_variant
object by forwarding a value into variant's storage.
Size of the value must be less than or equal to Footprint
to benefit small object optimization, otherwise the value will be stored into PMR allocated storage. Any failure during the value forwarding will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. |
- Parameters
-
mem_res | Pointer to a memory resource to be used by the variant. |
value | Value to be stored. |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>>
Constructs an unbounded_variant
object with in place constructed value.
Please consider using cetl::make_unbounded_variant helper instead.
Size of the value must be less than or equal to Footprint
. Any failure during the construction will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. |
Args | Types of arguments to be passed to the constructor of ValueType . |
- Parameters
-
args | Arguments to be forwarded to the constructor of ValueType . |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>>
Constructs a PMR-enabled unbounded_variant
object with in place constructed value.
Please consider using cetl::make_unbounded_variant helper instead.
Size of the value must be less than or equal to Footprint
to benefit small object optimization, otherwise the value will be stored into PMR allocated storage. Any failure during the construction will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. |
Args | Types of arguments to be passed to the constructor of ValueType . |
- Parameters
-
mem_res | Pointer to a memory resource to be used by the variant. |
args | Arguments to be forwarded to the constructor of ValueType . |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfNotPmrT<PmrAlias>>
Constructs an unbounded_variant
object with in place constructed value and initializer list.
Please consider using cetl::make_unbounded_variant helper instead.
Size of the value must be less than or equal to Footprint
. Any failure during the construction will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. Its size must be less than or equal to Footprint . |
Up | Type of the elements of the initializer list. |
Args | Types of arguments to be passed to the constructor of ValueType . |
- Parameters
-
list | Initializer list to be forwarded to the constructor of ValueType . |
args | Arguments to be forwarded to the constructor of ValueType . |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>, typename PmrAlias = Pmr, typename = detail::EnableIfPmrT<PmrAlias>>
Constructs a PMR-enabled unbounded_variant
object with in place constructed value and initializer list.
Size of the value must be less than or equal to Footprint
to benefit small object optimization, otherwise the value will be stored into PMR allocated storage. Any failure during the construction will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. Its size must be less than or equal to Footprint . |
Up | Type of the elements of the initializer list. |
Args | Types of arguments to be passed to the constructor of ValueType . |
- Parameters
-
mem_res | Pointer to a memory resource to be used by the variant. |
list | Initializer list to be forwarded to the constructor of ValueType . |
args | Arguments to be forwarded to the constructor of ValueType . |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Up, typename... Args, typename Tp = std::decay_t<ValueType>>
Emplaces a new value to *this
using initializer list.
Size of the value must be less than or equal to Footprint
to benefit small object optimization, and it can't be bigger than Footprint
in case of PMR support is disabled. Any failure during the emplacement will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. |
Up | Type of the elements of the initializer list. |
Args | Types of arguments to be passed to the constructor of ValueType . |
- Parameters
-
list | Initializer list to be forwarded to the constructor of ValueType . |
args | Arguments to be forwarded to the constructor of ValueType . |
template<
std::size_t Footprint, bool Copyable = true, bool Movable = Copyable,
std::size_t Alignment = alignof(std::max_align_t), typename Pmr = void>
template<typename ValueType, typename Tp = std::decay_t<ValueType>, typename = std::enable_if_t<!std::is_same<Tp, unbounded_variant>::value>>
Assigns value
to *this
by forwarding its value.
Size of the value must be less than or equal to Footprint
to benefit small object optimization, and it can't be bigger than Footprint
in case of PMR support is disabled. Any failure during the forwarding will result in the "valueless by exception" state.
- Template Parameters
-
ValueType | Type of the value to be stored. |