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

Class FloatAtom

tables/atom.py:698–706  ·  view source on GitHub ↗

Defines an atom of a floating point type (float kind).

Source from the content-addressed store, hash-verified

696
697
698class FloatAtom(Atom): # type: ignore[misc]
699 """Defines an atom of a floating point type (float kind)."""
700
701 kind: str = "float"
702 _deftype = "float64"
703 _defvalue = 0.0
704 __init__ = _abstract_atom_init(
705 _deftype, _defvalue
706 ) # type: ignore[assignment]
707
708
709class Int8Atom(IntAtom): # type: ignore[misc]

Callers

nothing calls this directly

Calls 1

_abstract_atom_initFunction · 0.85

Tested by

no test coverage detected