External modules ================ Some modules do not have external documentation, link them here. .. class:: Array Container for typed immutable array, defined in https://github.com/DiamondLightSource/annotypes/blob/master/annotypes/_array.py .. class:: Anno Annotated type declaration, defined in https://github.com/DiamondLightSource/annotypes/blob/master/annotypes/_anno.py .. class:: List List[typ] is a `list` with elements of typ. See `typing.List` .. class:: Dict Dict[ktyp, vtyp] is a `dict` with keys of ktyp and values of vtyp. See `typing.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 `tuple` with the given types. See `typing.Tuple`