lsst.afw g2603b601e3+f394777a51
|
Container that passes Storable objects by value while preserving type. More...
#include <PolymorphicValue.h>
Public Member Functions | |
PolymorphicValue (Storable const &value) | |
Create a new object containing a copy of a Storable. More... | |
~PolymorphicValue () noexcept | |
bool | empty () const noexcept |
Check whether this object contains a Storable. More... | |
std::size_t | hash_value () const |
Return a hash of this object (optional operation). More... | |
PolymorphicValue (PolymorphicValue const &other) | |
Try to copy a PolymorphicValue. More... | |
PolymorphicValue (PolymorphicValue &&other) noexcept | |
Try to copy a PolymorphicValue. More... | |
PolymorphicValue & | operator= (PolymorphicValue const &other) |
Try to assign a PolymorphicValue. More... | |
PolymorphicValue & | operator= (PolymorphicValue &&other) noexcept |
Try to assign a PolymorphicValue. More... | |
void | swap (PolymorphicValue &other) noexcept |
Exchange the contents of this container and another. More... | |
operator Storable & () | |
Return a reference to the internal Storable, if one exists. More... | |
operator Storable const & () const | |
Return a reference to the internal Storable, if one exists. More... | |
Storable & | get () |
Return a reference to the internal Storable, if one exists. More... | |
Storable const & | get () const |
Return a reference to the internal Storable, if one exists. More... | |
bool | operator== (PolymorphicValue const &other) const noexcept |
Test whether the contained Storables are equal. More... | |
bool | operator!= (PolymorphicValue const &other) const noexcept |
Test whether the contained Storables are equal. More... | |
Related Functions | |
(Note that these are not member functions.) | |
void | swap (PolymorphicValue &lhs, PolymorphicValue &rhs) noexcept |
Swap specialization for PolymorphicValue. More... | |
Container that passes Storable objects by value while preserving type.
This class is implicitly convertible to and from a reference to Storable, but behaves like a value: changing the internal Storable changes the object's state, and copying the object creates a new Storable.
Definition at line 52 of file PolymorphicValue.h.
lsst::afw::typehandling::PolymorphicValue::PolymorphicValue | ( | Storable const & | value | ) |
Create a new object containing a copy of a Storable.
value | the value to copy into a PolymorphicValue |
Definition at line 33 of file PolymorphicValue.cc.
|
defaultnoexcept |
lsst::afw::typehandling::PolymorphicValue::PolymorphicValue | ( | PolymorphicValue const & | other | ) |
Try to copy a PolymorphicValue.
other | the PolymorphicValue to copy. |
UnsupportedOperationException | Thrown if a copy is required and the object in other does not implement Storable::cloneStorable. |
Definition at line 39 of file PolymorphicValue.cc.
|
defaultnoexcept |
Try to copy a PolymorphicValue.
other | the PolymorphicValue to copy. |
UnsupportedOperationException | Thrown if a copy is required and the object in other does not implement Storable::cloneStorable. |
|
noexcept |
Check whether this object contains a Storable.
true
if this object has no Storable, false
otherwise Definition at line 62 of file PolymorphicValue.cc.
Storable & lsst::afw::typehandling::PolymorphicValue::get | ( | ) |
Return a reference to the internal Storable, if one exists.
pex::exceptions::LogicError | Thrown if this object is empty. |
Definition at line 66 of file PolymorphicValue.cc.
Storable const & lsst::afw::typehandling::PolymorphicValue::get | ( | ) | const |
Return a reference to the internal Storable, if one exists.
pex::exceptions::LogicError | Thrown if this object is empty. |
Definition at line 70 of file PolymorphicValue.cc.
std::size_t lsst::afw::typehandling::PolymorphicValue::hash_value | ( | ) | const |
Return a hash of this object (optional operation).
UnsupportedOperationException | Thrown if the internal Storable is not hashable. |
Definition at line 87 of file PolymorphicValue.cc.
lsst::afw::typehandling::PolymorphicValue::operator Storable & | ( | ) |
Return a reference to the internal Storable, if one exists.
pex::exceptions::LogicError | Thrown if this object is empty. |
Definition at line 64 of file PolymorphicValue.cc.
lsst::afw::typehandling::PolymorphicValue::operator Storable const & | ( | ) | const |
Return a reference to the internal Storable, if one exists.
pex::exceptions::LogicError | Thrown if this object is empty. |
Definition at line 65 of file PolymorphicValue.cc.
|
inlinenoexcept |
Test whether the contained Storables are equal.
Empty PolymorphicValues compare equal to each other and unequal to any non-empty PolymorphicValue.
Definition at line 130 of file PolymorphicValue.h.
|
noexcept |
Try to assign a PolymorphicValue.
To preserve the run-time type of the object in other
, this method swaps (and possibly copies) the Storables instead of relying on the Storable
's operator=
.
other | the PolymorphicValue to overwrite this value with. |
UnsupportedOperationException | Thrown if a copy is required and the object in other does not implement Storable::cloneStorable. |
Definition at line 51 of file PolymorphicValue.cc.
PolymorphicValue & lsst::afw::typehandling::PolymorphicValue::operator= | ( | PolymorphicValue const & | other | ) |
Try to assign a PolymorphicValue.
To preserve the run-time type of the object in other
, this method swaps (and possibly copies) the Storables instead of relying on the Storable
's operator=
.
other | the PolymorphicValue to overwrite this value with. |
UnsupportedOperationException | Thrown if a copy is required and the object in other does not implement Storable::cloneStorable. |
Definition at line 43 of file PolymorphicValue.cc.
|
noexcept |
Test whether the contained Storables are equal.
Empty PolymorphicValues compare equal to each other and unequal to any non-empty PolymorphicValue.
Definition at line 78 of file PolymorphicValue.cc.
|
noexcept |
Exchange the contents of this container and another.
Definition at line 57 of file PolymorphicValue.cc.
|
related |
Swap specialization for PolymorphicValue.
Definition at line 152 of file PolymorphicValue.h.