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

A module implementing an interface for keeping track of primitive-integer
bounds (based on bit width).

 
Classes
       
builtins.tuple(builtins.object)
IntegerBounds

 
class IntegerBounds(builtins.tuple)
    IntegerBounds(min: int, max: int)
 
A container for integer bounds.
 
 
Method resolution order:
IntegerBounds
builtins.tuple
builtins.object

Methods defined here:
__getnewargs__(self)
Return self as a plain tuple.  Used by copy and pickle.
__repr__(self)
Return a nicely formatted representation string
_asdict(self)
Return a new dict which maps field names to their values.
_replace(self, /, **kwds)
Return a new IntegerBounds object replacing specified fields with new values
clamp(self, val: int) -> int
Ensure that 'val' is between min and max, use the min or max value
instead of the provided value if it exceeds these bounds.
validate(self, val: int) -> bool
Determine if the value is within bounds.

Class methods defined here:
_make(iterable) from builtins.type
Make a new IntegerBounds object from a sequence or iterable

Static methods defined here:
__new__(_cls, min: int, max: int)
Create new instance of IntegerBounds(min, max)
create(byte_count: int, signed: bool) -> 'IntegerBounds'
Compute maximum and minimum values given size and signedness.

Data descriptors defined here:
min
Alias for field number 0
max
Alias for field number 1

Data and other attributes defined here:
__annotations__ = {'max': <class 'int'>, 'min': <class 'int'>}
__match_args__ = ('min', 'max')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {}
_fields = ('min', 'max')

Methods inherited from builtins.tuple:
__add__(self, value, /)
Return self+value.
__contains__(self, key, /)
Return bool(key in self).
__eq__(self, value, /)
Return self==value.
__ge__(self, value, /)
Return self>=value.
__getattribute__(self, name, /)
Return getattr(self, name).
__getitem__(self, key, /)
Return self[key].
__gt__(self, value, /)
Return self>value.
__hash__(self, /)
Return hash(self).
__iter__(self, /)
Implement iter(self).
__le__(self, value, /)
Return self<=value.
__len__(self, /)
Return len(self).
__lt__(self, value, /)
Return self<value.
__mul__(self, value, /)
Return self*value.
__ne__(self, value, /)
Return self!=value.
__rmul__(self, value, /)
Return value*self.
count(self, value, /)
Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)
Return first index of value.
 
Raises ValueError if the value is not present.

Class methods inherited from builtins.tuple:
__class_getitem__(...) from builtins.type
See PEP 585