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

A module implementing a type interface for integers.

 
Classes
       
runtimepy.primitives.types.base.PrimitiveType(typing.Generic)
Int16Type
Int32Type
Int64Type
Int8Type
Uint16Type
Uint32Type
Uint64Type
Uint8Type

 
class Int16Type(runtimepy.primitives.types.base.PrimitiveType)
    Int16Type() -> None
 
A simple type interface for int16's.
 
 
Method resolution order:
Int16Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_short],)
__parameters__ = ()
c_type = <class 'ctypes.c_short'>
name = 'int16'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Int32Type(runtimepy.primitives.types.base.PrimitiveType)
    Int32Type() -&gt; None
 
A simple type interface for int32's.
 
 
Method resolution order:
Int32Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_int],)
__parameters__ = ()
c_type = <class 'ctypes.c_int'>
name = 'int32'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Int64Type(runtimepy.primitives.types.base.PrimitiveType)
    Int64Type() -&gt; None
 
A simple type interface for int64's.
 
 
Method resolution order:
Int64Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_long],)
__parameters__ = ()
c_type = <class 'ctypes.c_long'>
name = 'int64'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Int8Type(runtimepy.primitives.types.base.PrimitiveType)
    Int8Type() -&gt; None
 
A simple type interface for int8's.
 
 
Method resolution order:
Int8Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_byte],)
__parameters__ = ()
c_type = <class 'ctypes.c_byte'>
name = 'int8'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Uint16Type(runtimepy.primitives.types.base.PrimitiveType)
    Uint16Type() -&gt; None
 
A simple type interface for uint16's.
 
 
Method resolution order:
Uint16Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_ushort],)
__parameters__ = ()
c_type = <class 'ctypes.c_ushort'>
name = 'uint16'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Uint32Type(runtimepy.primitives.types.base.PrimitiveType)
    Uint32Type() -&gt; None
 
A simple type interface for uint32's.
 
 
Method resolution order:
Uint32Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_uint],)
__parameters__ = ()
c_type = <class 'ctypes.c_uint'>
name = 'uint32'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Uint64Type(runtimepy.primitives.types.base.PrimitiveType)
    Uint64Type() -&gt; None
 
A simple type interface for uint64's.
 
 
Method resolution order:
Uint64Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_ulong],)
__parameters__ = ()
c_type = <class 'ctypes.c_ulong'>
name = 'uint64'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
class Uint8Type(runtimepy.primitives.types.base.PrimitiveType)
    Uint8Type() -&gt; None
 
A simple type interface for uint8's.
 
 
Method resolution order:
Uint8Type
runtimepy.primitives.types.base.PrimitiveType
typing.Generic
builtins.object

Methods defined here:
__init__(self) -> None
Initialize this type.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.types.base.PrimitiveType[ctypes.c_ubyte],)
__parameters__ = ()
c_type = <class 'ctypes.c_ubyte'>
name = 'uint8'

Methods inherited from runtimepy.primitives.types.base.PrimitiveType:
__eq__(self, other) -> bool
Determine if two types are equal.
__hash__(self) -> int
Get a hash for this type.
__str__(self) -> str
Get this type as a string.
decode(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Decode primitive based on this type.
encode(self, value: Union[bool, int, float], byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> bytes
Encode a primitive value.
read(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> Union[bool, int, float]
Read a primitive from a stream based on this type.
write(self, value: Union[bool, int, float], stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = <ByteOrder.NETWORK: 4>) -> int
Write a primitive to a stream based on this type.

Class methods inherited from runtimepy.primitives.types.base.PrimitiveType:
instance() -> ~T from builtins.type
Get an instance of this primitive type.

Data descriptors inherited from runtimepy.primitives.types.base.PrimitiveType:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
Data
        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>
Uint64 = <runtimepy.primitives.types.int.Uint64Type object>
Uint8 = <runtimepy.primitives.types.int.Uint8Type object>