LSST Applications g1653933729+34a971ddd9,g1a997c3884+34a971ddd9,g2160c40384+da0d0eec6b,g28da252d5a+1236b942f7,g2bbee38e9b+e5a1bc5b38,g2bc492864f+e5a1bc5b38,g2ca4be77d2+192fe503f0,g2cdde0e794+704103fe75,g3156d2b45e+6e87dc994a,g347aa1857d+e5a1bc5b38,g35bb328faa+34a971ddd9,g3a166c0a6a+e5a1bc5b38,g3e281a1b8c+8ec26ec694,g4005a62e65+ba0306790b,g414038480c+9f5be647b3,g41af890bb2+c3a10c924f,g5065538af8+e7237db731,g5a0bb5165c+eae055db26,g717e5f8c0f+b65b5c3ae4,g80478fca09+4ce5a07937,g82479be7b0+08790af60f,g858d7b2824+b65b5c3ae4,g9125e01d80+34a971ddd9,ga5288a1d22+5df949a35e,gae0086650b+34a971ddd9,gb58c049af0+ace264a4f2,gbd397ab92a+2141afb137,gc28159a63d+e5a1bc5b38,gc805d3fbd4+b65b5c3ae4,gcf0d15dbbd+97632ccc20,gd6b7c0dfd1+de826e8718,gda6a2b7d83+97632ccc20,gdaeeff99f8+7774323b41,ge2409df99d+e6cadbf968,ge33fd446bb+b65b5c3ae4,ge79ae78c31+e5a1bc5b38,gf0baf85859+890af219f9,gf5289d68f6+a27069ed62,w.2024.37
LSST Data Management Base Package
|
Namespaces | |
namespace | _GenericMap |
namespace | _SimpleGenericMap |
namespace | detail |
namespace | test |
namespace | testUtils |
Classes | |
class | GenericMap |
Interface for a heterogeneous map. More... | |
class | Key |
Key for type-safe lookup in a GenericMap. More... | |
class | MutableGenericMap |
Interface for a GenericMap that allows element addition and removal. More... | |
class | PolymorphicValue |
Container that passes Storable objects by value while preserving type. More... | |
class | SimpleGenericMap |
A GenericMap that allows insertion and deletion of arbitrary values. More... | |
class | Storable |
Interface supporting iteration over heterogenous containers. More... | |
class | StorableHelper |
"Trampoline" for Storable to let it be used as a base class in Python. More... | |
class | UnsupportedOperationException |
Exception thrown by Storable operations for unimplemented operations. More... | |
Typedefs | |
using | PyStorable = py::class_<Storable, PySharedPtr<Storable>, table::io::Persistable, StorableHelper<>> |
Functions | |
template<typename V , typename K > | |
constexpr Key< K, V > | makeKey (K const &id) |
Factory function for Key, to enable type parameter inference. | |
template<typename K , typename V > | |
std::ostream & | operator<< (std::ostream &os, Key< K, V > const &key) |
Output operator for Key. | |
void | swap (PolymorphicValue &lhs, PolymorphicValue &rhs) noexcept |
Swap specialization for PolymorphicValue. | |
std::string | declareGenericMapRestrictions (std::string const &className, std::string const &keyName) |
std::ostream & | operator<< (std::ostream &os, Storable const &storable) |
Output operator for Storable. | |
void | wrapGenericMap (cpputils::python::WrapperCollection &wrappers) |
void | wrapSimpleGenericMap (cpputils::python::WrapperCollection &wrappers) |
void | wrapStorable (cpputils::python::WrapperCollection &wrappers) |
PYBIND11_MODULE (_typehandling, mod) | |
using lsst::afw::typehandling::PyStorable = py::class_<Storable, PySharedPtr<Storable>, table::io::Persistable, StorableHelper<>> |
Definition at line 41 of file _Storable.cc.
std::string lsst::afw::typehandling::declareGenericMapRestrictions | ( | std::string const & | className, |
std::string const & | keyName ) |
Definition at line 37 of file python.cc.
|
constexpr |
Factory function for Key, to enable type parameter inference.
id | the key ID to create. |
K
.Calling this function prevents you from having to explicitly name the key type:
auto key = makeKey<int>("foo");
Definition at line 173 of file Key.h.
std::ostream & operator<< | ( | std::ostream & | os, |
Key< K, V > const & | key ) |
Output operator for Key.
The output will use C++ template notation for the key; for example, a key "foo" pointing to an int
may print as "foo<int>"
.
os | the desired output stream |
key | the key to print |
os
K
is exception-safe.Definition at line 196 of file Key.h.
|
inline |
Output operator for Storable.
os | the desired output stream |
storable | the object to print |
os
UnsupportedOperationException | Thrown if storable does not have an implementation of Storable::toString. |
Definition at line 174 of file Storable.h.
lsst::afw::typehandling::PYBIND11_MODULE | ( | _typehandling | , |
mod | ) |
Definition at line 41 of file _typehandling.cc.
|
inlinenoexcept |
Swap specialization for PolymorphicValue.
Definition at line 152 of file PolymorphicValue.h.
void lsst::afw::typehandling::wrapGenericMap | ( | cpputils::python::WrapperCollection & | wrappers | ) |
Definition at line 221 of file _GenericMap.cc.
void lsst::afw::typehandling::wrapSimpleGenericMap | ( | cpputils::python::WrapperCollection & | wrappers | ) |
Definition at line 79 of file _SimpleGenericMap.cc.
void lsst::afw::typehandling::wrapStorable | ( | cpputils::python::WrapperCollection & | wrappers | ) |
Definition at line 43 of file _Storable.cc.