mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 20:14:45 +00:00
12 lines
406 B
Python
12 lines
406 B
Python
.abstructmethod: |F <: GenericCallable|(F) -> F
|
|
.abstructclassmethod: |F <: GenericCallable|(F) -> F
|
|
.abstructstaticmethod: |F <: GenericCallable|(F) -> F
|
|
|
|
.ABCMeta: ClassType
|
|
.ABCMeta <: Type
|
|
.ABCMeta.
|
|
__instancecheck__: (self: .ABCMeta, instance: Obj) -> Bool
|
|
__subclasscheck__: (self: .ABCMeta, subclass: Type) -> Bool
|
|
register: (self: .ABCMeta, subclass: Type) -> NoneType
|
|
|
|
.ABC: ClassType
|