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

A module implementing an integer-primitive interface.

 
Classes
       
runtimepy.primitives.base.Primitive(typing.Generic)
Int16Primitive
Int32Primitive
Int64Primitive
Int8Primitive
Uint16Primitive
Uint32Primitive
Uint64Primitive
Uint8Primitive

 
Int16 = class Int16Primitive(runtimepy.primitives.base.Primitive)
    Int16(value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int16Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int16Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Int16Primitive(runtimepy.primitives.base.Primitive)
    Int16Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int16Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int16Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Int32 = class Int32Primitive(runtimepy.primitives.base.Primitive)
    Int32(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int32Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int32Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Int32Primitive(runtimepy.primitives.base.Primitive)
    Int32Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int32Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int32Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Int64 = class Int64Primitive(runtimepy.primitives.base.Primitive)
    Int64(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int64Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int64Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Int64Primitive(runtimepy.primitives.base.Primitive)
    Int64Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int64Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int64Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Int8 = class Int8Primitive(runtimepy.primitives.base.Primitive)
    Int8(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int8Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int8Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Int8Primitive(runtimepy.primitives.base.Primitive)
    Int8Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Int8Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Int8Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Uint16 = class Uint16Primitive(runtimepy.primitives.base.Primitive)
    Uint16(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint16Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint16Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Uint16Primitive(runtimepy.primitives.base.Primitive)
    Uint16Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint16Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint16Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Uint32 = class Uint32Primitive(runtimepy.primitives.base.Primitive)
    Uint32(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint32Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint32Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Uint32Primitive(runtimepy.primitives.base.Primitive)
    Uint32Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint32Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint32Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Uint64 = class Uint64Primitive(runtimepy.primitives.base.Primitive)
    Uint64(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint64Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint64Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Uint64Primitive(runtimepy.primitives.base.Primitive)
    Uint64Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint64Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint64Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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.

 
Uint8 = class Uint8Primitive(runtimepy.primitives.base.Primitive)
    Uint8(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint8Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint8Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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 Uint8Primitive(runtimepy.primitives.base.Primitive)
    Uint8Primitive(value: int = 0, scaling: list[typing.Union[float, int]] = None) -&gt; None
 
A simple primitive class for integer primitives.
 
 
Method resolution order:
Uint8Primitive
runtimepy.primitives.base.Primitive
typing.Generic
builtins.object

Methods defined here:
__init__(self, value: int = 0, scaling: list[typing.Union[float, int]] = None) -> None
Initialize this integer primitive.

Data and other attributes defined here:
__annotations__ = {}
__orig_bases__ = (runtimepy.primitives.base.Primitive[int],)
__parameters__ = ()
kind = <runtimepy.primitives.types.int.Uint8Type object>

Methods inherited from runtimepy.primitives.base.Primitive:
__bool__(self) -> bool
Use the underlying value for boolean evaluation.
__bytes__(self) -> bytes
Convert this instance to a byte array.
__call__(self, value: ~T = None) -> ~T
A callable interface for setting and getting the underlying value.
__copy__(self) -> 'Primitive[T]'
Make a copy of this primitive.
__eq__(self, other) -> bool
Determine if this instance is equivalent to the provided argument.
__hash__(self) -> int
A hash for this instance.
__str__(self) -> str
Get this primitive's value as a string.
age_ns(self, now: int = None) -> int
Get the age of this primitive's value in nanoseconds.
age_str(self, now: int = None) -> str
Get the age of this primitive's value as a string.
binary(self, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes
Convert this instance to a byte array.
copy(self) -> 'Primitive[T]'
A simple wrapper for copy.
from_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a stream and return the new value.
register_callback(self, callback: Callable[[~T, ~T], NoneType], once: bool = False) -> int
Register a callback and return an identifier for it.
remove_callback(self, callback_id: int) -> bool
Remove a callback if one is registered with this identifier.
to_stream(self, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int
Write this primitive to a stream.
update(self, data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T
Update this primitive from a bytes object.

Class methods inherited from runtimepy.primitives.base.Primitive:
decode(data: bytes, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Decode a primitive of this type from provided data.
encode(value: ~T, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> bytes from builtins.type
Create a bytes instance based on this primitive type.
read(stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> ~T from builtins.type
Read a primitive from the provided stream based on this primitive type.
write(value: ~T, stream: <class 'BinaryIO'>, byte_order: runtimepy.primitives.byte_order.ByteOrder = None) -> int from builtins.type
Write a primitive to the stream based on this type.

Readonly properties inherited from runtimepy.primitives.base.Primitive:
size
Get the size of this primitive.

Data descriptors inherited from runtimepy.primitives.base.Primitive:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object
scaled
Get this primitive as a scaled value.
value
Obtain the underlying value.

Data and other attributes inherited from runtimepy.primitives.base.Primitive:
byte_order = <ByteOrder.NETWORK: 4>

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
        ChannelScaling = list[typing.Union[float, int]]
SignedInt = typing.Union[runtimepy.primitives.int.Int8Primit...imitive, runtimepy.primitives.int.Int64Primitive]
UnsignedInt = typing.Union[runtimepy.primitives.int.Uint8Primi...mitive, runtimepy.primitives.int.Uint64Primitive]