config_ops¶
Utilities that might be useful for configuration dictionaries.
TypeVar’s
- class _Data_T¶
TypeVar('_Data_T', bound='npt.NDArray[Any]', default='npt.NDArray[Any]')
- class _Uniforms_T¶
TypeVar('_Uniforms_T', bound='float | tuple[float, ...]', default=float)
Classes
Functions
- merge_dicts_recursively(*dicts)[source]¶
Creates a dict whose keyset is the union of all the input dictionaries. The value for each key is based on the first dict in the list with that key.
dicts later in the list have higher priority
When values are dictionaries, it is applied recursively
- Parameters:
dicts (dict[Any, Any])
- Return type:
dict[Any, Any]