Class lsst::afw::typehandling::SimpleGenericMap

template<typename K>
class SimpleGenericMap : public lsst::afw::typehandling::MutableGenericMap<K>

A GenericMap that allows insertion and deletion of arbitrary values.

In Python, a SimpleGenericMap behaves like a dict. In particular, it will iterate over keys in the order they were added.

Template Parameters
  • K: the key type of the map. Must be hashable.