Defines an atom of a floating point type (float kind).
| 696 | |
| 697 | |
| 698 | class 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 | |
| 709 | class Int8Atom(IntAtom): # type: ignore[misc] |
nothing calls this directly
no test coverage detected