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 int and float types are automatically converted to np.int64 and np.float64 , respectively. Use the numpy types 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.