MCPcopy Create free account
hub / github.com/PyTables/PyTables / UIntAtom

Class UIntAtom

tables/atom.py:686–695  ·  view source on GitHub ↗

Defines an atom of an unsigned integral type (uint kind).

Source from the content-addressed store, hash-verified

684
685
686class 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
698class FloatAtom(Atom): # type: ignore[misc]

Callers 3

_g_post_init_hookMethod · 0.85
create_tempMethod · 0.85
create_temp2Method · 0.85

Calls 1

_abstract_atom_initFunction · 0.85

Tested by

no test coverage detected