BloombergLP::bslstl::Variant_MoveConstructorBase

This component-private class has deleted move constructor if (template parameter) t_ISMOVECONSTRUCTIBLE is false. All other special member functions are defaulted.

Synopsis

Declared in <bslstl_variant.h>

template<
    bool t_ISCOPYCONSTRUCTIBLE,
    bool t_ISMOVECONSTRUCTIBLE>
struct Variant_MoveConstructorBase
    : Variant_CopyConstructorBase<t_ISCOPYCONSTRUCTIBLE>

Base Classes

NameDescription
Variant_CopyConstructorBase<t_ISCOPYCONSTRUCTIBLE>This component-private class has deleted copy constructor if (template parameter) t_ISCOPYCONSTRUCTIBLE is false. All other special member functions are defaulted.

Specializations

Name
Variant_MoveConstructorBase<t_ISCOPYCONSTRUCTIBLE, false>

Derived Classes

NameDescription
Variant_CopyAssignBase This component-private class has deleted copy assignment operator if (template parameter) t_ISCOPYASSIGNABLE is false. All other special member functions are defaulted.
Variant_CopyAssignBase<t_ISCOPYCONSTRUCTIBLE, t_ISMOVECONSTRUCTIBLE, false>