erg/crates/erg_compiler/lib/pystd/collections.d/abc.d.er
2023-05-07 03:33:21 +09:00

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