deepcave.utils.data_structures

# Data Structures

This module can be used for updating one dictionary with another dictionary inplace.

Functions

update_dict(a, b)

Update dictionary a with dictionary b inplace.

deepcave.utils.data_structures.update_dict(a, b)[source]

Update dictionary a with dictionary b inplace.

Parameters:
  • a (Dict[str, Dict]) – Dictionary to be updated.

  • b (Dict[str, Dict]) – Dictionary to be added.

Return type:

None