A data type object (an instance of Dtype class) describes how the bytes in the fixed-size block of memory corresponding to an array item should be interpreted.
Public fields
dtypeThe original dtype string, like "<f4".
byte_orderThe byte order of the dtype, either "little", "big", or "nr".
basic_typeThe basic type of the dtype, like "f".
num_bytesThe number of bytes of the dtype.
num_itemsThe number of items of the dtype.
is_signedWhether the dtype is signed. Logical/boolean.
is_structuredWhether the dtype is structured. Logical/boolean.
is_objectWhether the dtype is an object. Logical/boolean.
object_codecThe object codec instance.
