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

Class IntAtom

tables/atom.py:674–683  ·  view source on GitHub ↗

Defines an atom of a signed integral type (int kind).

Source from the content-addressed store, hash-verified

672
673
674class IntAtom(Atom): # type: ignore[misc]
675 """Defines an atom of a signed integral type (int kind)."""
676
677 kind: str = "int"
678 signed: bool = True
679 _deftype = "int32"
680 _defvalue = 0
681 __init__ = _abstract_atom_init(
682 _deftype, _defvalue
683 ) # type: ignore[assignment]
684
685
686class UIntAtom(Atom): # type: ignore[misc]

Callers

nothing calls this directly

Calls 1

_abstract_atom_initFunction · 0.85

Tested by

no test coverage detected