mirror of
https://github.com/erg-lang/erg.git
synced 2025-07-16 09:35:19 +00:00
37 lines
887 B
Python
37 lines
887 B
Python
# The ABCs in this file are not defined as a collection of traits.
|
|
# Use `std/abc` instead.
|
|
.Container: ClassType
|
|
.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
|
|
.MutableSequence: ClassType
|
|
.ByteString: ClassType
|
|
.Set: ClassType
|
|
.MutableSet: ClassType
|
|
.Mapping: ClassType
|
|
.Mapping.
|
|
__getitem__: (Type, Type) -> Type
|
|
.MutableMapping: ClassType
|
|
.MappingView: ClassType
|
|
.ItemsView: ClassType
|
|
.KeysView: ClassType
|
|
.ValuesView: ClassType
|
|
.Awaitable: ClassType
|
|
.Coroutine: ClassType
|
|
.AsyncIterable: ClassType
|
|
.AsyncIterator: ClassType
|
|
.AsyncGenerator: ClassType
|