CADETProcess.dataStructure.dataStructure.Descriptor#
- class CADETProcess.dataStructure.dataStructure.Descriptor(*args: Any, **kwargs: Any)[source]#
Base class for descriptors.
Descriptors are used to efficiently implement class attributes that require checking type, value, size etc. For using Descriptors, a class must inherit from StructMeta.
selfis the Descriptor managing the attribute of theinstance.instanceis the object which holds the actualvalue.valueis the value of theinstanceattribute.
See also
StructMetaParameters