Base Type
Basic Types.
DOCME
- :any:
Type- Base Class for all Types - :any:
AScalarType- Base Class for all Single Value Types - :any:
VecType- Base Class for all vector-mapped Scalars. - :any:
CompositeType- Base class for all assembling Types.
BaseType
Bases: Object
Base Class for all Types.
is_connectable
Check For Valid Connection To other.
This method has to be overwritten.
BaseScalarType
AScalarType
Bases: BaseScalarType, Light
Abstract Type For All Native Types.
check
Check if value can be handled by type`.
import ucdp as u atype = u.AScalarType() atype.check(1) 1
encode
Encode Value.
import ucdp as u atype = u.AScalarType() atype.encode(1) 1
AVecType
ACompositeType
Bases: BaseType
Base Class For All Composite Types.