[docs]classMap(Generic[K,V]):"""Maps keys of type :py:param:`.K` to values of type :py:param:`.V`. Type parameters: K: Key type. V: Mapped value type. Group: type-param """@overloaddef__init__(self):...@overloaddef__init__(self,items:collections.abc.Mapping[K,V]):...@overloaddef__init__(self,items:Iterable[tuple[K,V]]):...
[docs]def__init__(self,items):"""Construct from the specified items."""...
[docs]defget(self,key:K,default=None):"""Return the mapped value, or the specified default. :param key: Key to retrieve. :param default: Default value to return if key is not present. """...
[docs]def__len__(self)->int:"""Return the number of items in the map."""...
[docs]def__contains__(self,key:K)->bool:"""Check if the map contains :py:param:`.key`."""...
[docs]def__getitem__(self,key:K)->V:"""Return the value associated with :py:param:`.key`. Raises: KeyError: if :py:param:`.key` is not present. """...
[docs]def__setitem__(self,key:K,value:V):"""Set the value associated with the specified key."""...
[docs]def__delitem__(self,key:K):"""Remove the value associated with the specified key. Raises: KeyError: if :py:param:`.key` is not present. """...
[docs]def__iter__(self)->Iterator[K]:"""Iterate over the keys."""...
[docs]classDerived(Map[int,U],Generic[U]):"""Map from integer keys to arbitrary values. Type parameters: U: Mapped value type. Group: type-param """pass