feat: display progress

This commit is contained in:
Shunsuke Shibayama 2024-09-09 21:40:19 +09:00
parent 60ea11aa3e
commit 948a14b1af
4 changed files with 41 additions and 2 deletions

View file

@ -3,10 +3,20 @@
.NamedTuple = 'namedtuple': ClassType
.NamedTuple.
__call__: (typename: Str, field_names: Sequence(Str), rename := Bool) -> (*Obj, **Obj) -> NamedTuple
.Deque = 'deque': ClassType
.Deque! = 'deque': ClassType
.Deque!.
__call__: (iterable := Iterable(Obj)) -> Deque!
.ChainMap: ClassType
.ChainMap.
maps: [Mapping; _]
__call__: (*maps: Mapping(Obj, Obj)) -> ChainMap
new_child: (m := Mapping(Obj, Obj), **kwargs: Obj) -> ChainMap
.Counter: ClassType
.Counter.
__call__: (iterable_or_mapping := Iterable(Obj) or Mapping(Obj, Obj), **kwargs: Obj) -> Counter
.OrderedDict: ClassType
.OrderedDict.
__call__: (mapping: Mapping(Obj, Obj)) -> OrderedDict
.Defaultdict = 'defaultDict': ClassType
.UserDict: ClassType
.UserList: ClassType