|
| smtkTypeMacroBase (smtk::common::Managers) |
|
| smtkCreateMacro (Managers) |
|
| TypeContainer ()=default |
| Construct an empty TypeContainer.
|
|
| TypeContainer (const TypeContainer &) |
| Construct a TypeContainer whose contents are copied from an existing TypeContainer.
|
|
| TypeContainer (TypeContainer &&)=default |
| Move the contents of one TypeContainer into a new TypeContainer.
|
|
TypeContainer & | operator= (const TypeContainer &) |
| Copy the contents of an existing TypeContainer into this one.
|
|
TypeContainer & | operator= (TypeContainer &&)=default |
| Move the contents of an existing TypeContainer into this one.
|
|
template<typename Arg , typename... Args, typename std::enable_if<!std::is_base_of< TypeContainer, Arg >::value, int >::type = 0> |
| TypeContainer (const Arg &arg, const Args &... args) |
| Construct a TypeContainer instance from any number of elements. More...
|
|
template<typename Type > |
bool | contains () const |
| Check if a Type is present in the TypeContainer.
|
|
template<typename Type > |
bool | insert (const Type &value) |
| Insert a Type instance into the TypeContainer. More...
|
|
template<typename Type > |
bool | insert_or_assign (const Type &value) |
| Insert a Type instance into the TypeContainer if it does not exist already or replace it if it does.
|
|
template<typename Type , typename... Args> |
bool | emplace (Args &&... args) |
| Emplace a Type instance into the TypeContainer.
|
|
template<typename Type > |
const Type & | get () const |
| Access a Type instance, and throw if it is not in the TypeContainer.
|
|
template<typename Type > |
std::enable_if< std::is_default_constructible< Type >::value, Type & >::type | get () noexcept |
| For default-constructible types, access a Type instance, creating one if it is not in the TypeContainer.
|
|
template<typename Type > |
std::enable_if<!std::is_default_constructible< Type >::value, Type & >::type | get () |
| For non-default-constructible types, access a Type instance; throw if it is not in the TypeContainer.
|
|
template<typename Type > |
bool | erase () |
|
bool | empty () const noexcept |
|
std::size_t | size () const noexcept |
|
void | clear () noexcept |
|