mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 10:49:54 +00:00
feat: add special namespaces module/global
This commit is contained in:
parent
c4a0efae08
commit
730886021e
29 changed files with 349 additions and 193 deletions
|
@ -4,17 +4,27 @@
|
|||
.Hashable: ClassType
|
||||
.Sized: ClassType
|
||||
.Callable: ClassType
|
||||
.Callable.
|
||||
__getitem__: (params: [Type; _], Type) -> Type
|
||||
.Iterable: ClassType
|
||||
.Iterable.
|
||||
__getitem__: Type -> Type
|
||||
.Collection: ClassType
|
||||
.Iterator: ClassType
|
||||
.Iterator.
|
||||
__getitem__: Type -> Type
|
||||
.Reversible: ClassType
|
||||
.Genertor: ClassType
|
||||
.Sequence: ClassType
|
||||
.Sequence.
|
||||
__getitem__: Type -> Type
|
||||
.MutableSqunce: ClassType
|
||||
.ByteString: ClassType
|
||||
.Set: ClassType
|
||||
.MutableSet: ClassType
|
||||
.Mapping: ClassType
|
||||
.Mapping.
|
||||
__getitem__: (Type, Type) -> Type
|
||||
.MutableMapping: ClassType
|
||||
.MappingView: ClassType
|
||||
.ItemsView: ClassType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue