|
IRON 29eae2a52e20a77544b95d363677e6be9e9131b8
|
Functions | |
| str_to_dtype (dtype_str) | |
| dtype_to_str (dtype) | |
Variables | |
| dict | dtype_map |
Utilities for converting between short string names and numpy dtype objects.
| iron.dtype.dtype_to_str | ( | dtype | ) |
Convert a dtype object to its string representation.
Args:
dtype: The dtype object to convert.
Returns:
str: The string representation of the dtype.
| iron.dtype.str_to_dtype | ( | dtype_str | ) |
Convert a string representation of a data type to its corresponding dtype object.
Args:
dtype_str (str): The string representation of the data type.
Returns:
dtype: The corresponding dtype object.
| dict iron.dtype.dtype_map |