runtimepy.primitives.types
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/primitives/types/__init__.py

A module exposing primitive types.

 
Package Contents
       
base
bool
bounds
float
int

 
Functions
       
normalize(value: Union[str, runtimepy.primitives.types.int.Int8Type, runtimepy.primitives.types.int.Int16Type, runtimepy.primitives.types.int.Int32Type, runtimepy.primitives.types.int.Int64Type, runtimepy.primitives.types.int.Uint8Type, runtimepy.primitives.types.int.Uint16Type, runtimepy.primitives.types.int.Uint32Type, runtimepy.primitives.types.int.Uint64Type, runtimepy.primitives.types.float.HalfType, runtimepy.primitives.types.float.FloatType, runtimepy.primitives.types.float.DoubleType, runtimepy.primitives.types.bool.BooleanType]) -> Union[runtimepy.primitives.types.int.Int8Type, runtimepy.primitives.types.int.Int16Type, runtimepy.primitives.types.int.Int32Type, runtimepy.primitives.types.int.Int64Type, runtimepy.primitives.types.int.Uint8Type, runtimepy.primitives.types.int.Uint16Type, runtimepy.primitives.types.int.Uint32Type, runtimepy.primitives.types.int.Uint64Type, runtimepy.primitives.types.float.HalfType, runtimepy.primitives.types.float.FloatType, runtimepy.primitives.types.float.DoubleType, runtimepy.primitives.types.bool.BooleanType]
Normalize a primitive type or string into a primitive type.

 
Data
        AnyIntegerType = typing.Union[runtimepy.primitives.types.int.Int8...2Type, runtimepy.primitives.types.int.Uint64Type]
AnyPrimitiveType = typing.Union[runtimepy.primitives.types.int.Int8...ype, runtimepy.primitives.types.bool.BooleanType]
Bool = <runtimepy.primitives.types.bool.BooleanType object>
Double = <runtimepy.primitives.types.float.DoubleType object>
Float = <runtimepy.primitives.types.float.FloatType object>
Half = <runtimepy.primitives.types.float.HalfType object>
Int16 = <runtimepy.primitives.types.int.Int16Type object>
Int32 = <runtimepy.primitives.types.int.Int32Type object>
Int64 = <runtimepy.primitives.types.int.Int64Type object>
Int8 = <runtimepy.primitives.types.int.Int8Type object>
PrimitiveTypelike = typing.Union[str, runtimepy.primitives.types.int...ype, runtimepy.primitives.types.bool.BooleanType]
PrimitiveTypes = {'bool': <runtimepy.primitives.types.bool.BooleanType object>, 'double': <runtimepy.primitives.types.float.DoubleType object>, 'float': <runtimepy.primitives.types.float.FloatType object>, 'half': <runtimepy.primitives.types.float.HalfType object>, 'int16': <runtimepy.primitives.types.int.Int16Type object>, 'int32': <runtimepy.primitives.types.int.Int32Type object>, 'int64': <runtimepy.primitives.types.int.Int64Type object>, 'int8': <runtimepy.primitives.types.int.Int8Type object>, 'uint16': <runtimepy.primitives.types.int.Uint16Type object>, 'uint32': <runtimepy.primitives.types.int.Uint32Type object>, ...}
SignedIntegerType = typing.Union[runtimepy.primitives.types.int.Int8...32Type, runtimepy.primitives.types.int.Int64Type]
Uint16 = <runtimepy.primitives.types.int.Uint16Type object>
Uint32 = <runtimepy.primitives.types.int.Uint32Type object>
Uint64 = <runtimepy.primitives.types.int.Uint64Type object>
Uint8 = <runtimepy.primitives.types.int.Uint8Type object>
UnsignedIntegerType = typing.Union[runtimepy.primitives.types.int.Uint...2Type, runtimepy.primitives.types.int.Uint64Type]
__annotations__ = {'PrimitiveTypes': dict[str, typing.Union[runtimepy.primitives.type...pe, runtimepy.primitives.types.bool.BooleanType]]}