Buckets:
| /* Float object interface */ | |
| /* | |
| PyFloatObject represents a (double precision) floating-point number. | |
| */ | |
| extern "C" { | |
| PyAPI_DATA(PyTypeObject) PyFloat_Type; | |
| PyAPI_FUNC(double) PyFloat_GetMax(void); | |
| PyAPI_FUNC(double) PyFloat_GetMin(void); | |
| PyAPI_FUNC(PyObject*) PyFloat_GetInfo(void); | |
| /* Return Python float from string PyObject. */ | |
| PyAPI_FUNC(PyObject*) PyFloat_FromString(PyObject*); | |
| /* Return Python float from C double. */ | |
| PyAPI_FUNC(PyObject*) PyFloat_FromDouble(double); | |
| /* Extract C double from Python float. The macro version trades safety for | |
| speed. */ | |
| PyAPI_FUNC(double) PyFloat_AsDouble(PyObject*); | |
| } | |
Xet Storage Details
- Size:
- 1.53 kB
- Xet hash:
- 59d047981f73e5380cdf9c4842f73116d02147f75d494a5b366e1de444b76ec2
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.