storage_types ¶
Type definitions for the types that can be stored in
Daf
.
- dafpy.storage_types. StorageNumber = bool | int | float | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | numpy.float32 | numpy.float64 ¶
-
Supported Python number types.
The built-in Python
intandfloattypes are automatically converted tonp.int64andnp.float64, respectively. Use thenumpytypes if you want to force the use of a specific (smaller) Julia type.
- dafpy.storage_types. StorageScalar = bool | int | float | numpy.int8 | numpy.int16 | numpy.int32 | numpy.int64 | numpy.uint8 | numpy.uint16 | numpy.uint32 | numpy.uint64 | numpy.float32 | numpy.float64 | str ¶
-
Supported Python scalar types.