bagof.hints.builtin
Builtin types (such as builtin subsets of collections.abc).
Attributes
BuiltinSequence
module-attribute
A tuple or list whose elements all share the same type.
BuiltinIntegral
module-attribute
The builtin integral type: int.
Note
bool is a subtype of int and is therefore
covered here.
BuiltinReal
module-attribute
Any builtin real number: (int | float).
BuiltinNumber
module-attribute
Any builtin number: (int | float | complex).