Defines an atom of an unsigned integral type (uint kind).
| 684 | |
| 685 | |
| 686 | class UIntAtom(Atom): # type: ignore[misc] |
| 687 | """Defines an atom of an unsigned integral type (uint kind).""" |
| 688 | |
| 689 | kind: str = "uint" |
| 690 | signed: bool = False |
| 691 | _deftype = "uint32" |
| 692 | _defvalue = 0 |
| 693 | __init__ = _abstract_atom_init( |
| 694 | _deftype, _defvalue |
| 695 | ) # type: ignore[assignment] |
| 696 | |
| 697 | |
| 698 | class FloatAtom(Atom): # type: ignore[misc] |
no test coverage detected