State

class State

State wrapper for Python

__contains__(key: int) bool
__copy__() State
__deepcopy__(_memo: Any) State
__len__() int
__new__(entries: ToState) State
__repr__() str
from_bytes(bytes: bytes) State
get(key: int) Optional[float]
items() list[tuple[int, float]]
keys() list[int]
set(key: int, value: float) None
to_bytes() bytes
values() list[float]
property entries: dict[int, float]