additional move support for Nullable and Optional

This commit is contained in:
Günter Obiltschnig
2020-01-15 09:35:59 +01:00
parent 8669839833
commit a31877372e
2 changed files with 52 additions and 10 deletions

View File

@@ -82,6 +82,14 @@ public:
{
}
Nullable(C&& value):
/// Creates a Nullable by moving the given value.
_value(value),
_isNull(false),
_null()
{
}
Nullable(const Nullable& other):
/// Creates a Nullable by copying another one.
_value(other._value),
@@ -112,6 +120,14 @@ public:
return *this;
}
Nullable& assign(C&& value)
/// Assigns a value to the Nullable.
{
_value = value;
_isNull = false;
return *this;
}
Nullable& assign(const Nullable& other)
/// Assigns another Nullable.
{
@@ -133,6 +149,12 @@ public:
return assign(value);
}
Nullable& operator = (C&& value)
/// Move-assigns a value to the Nullable.
{
return assign(value);
}
Nullable& operator = (const Nullable& other)
/// Assigns another Nullable.
{