External modules¶
Some modules do not have external documentation, link them here.
- class Array¶
Container for typed immutable array, defined in https://github.com/dls-controls/annotypes/blob/master/annotypes/_array.py
- class Anno¶
Annotated type declaration, defined in https://github.com/dls-controls/annotypes/blob/master/annotypes/_anno.py
- class List¶
List[typ] is a
listwith elements of typ. Seetyping.List
- class Dict¶
Dict[ktyp, vtyp] is a
dictwith keys of ktyp and values of vtyp. Seetyping.Dict
- class Any¶
Any Python object. See
typing.Any
- class Callable¶
A callable function or method. See
typing.Callable
- class Union¶
Union[typ1, typ2, typ3] means one of those types. See
typing.Union
- class Tuple¶
Tuple[typ1, typ2, typ3] means a 3 element
tuplewith the given types. Seetyping.Tuple