Ligare.programming.collections.dict

Libraries for working with dictionaries.

Functions

merge(a, b[, skip_existing])

Recursively merge values from b into a

Ligare.programming.collections.dict.merge(a, b, skip_existing=False)[source]

Recursively merge values from b into a

skip_existing: If true, any keys in b that already exist in a will not be merged.

This applies recursively. Keys in nested dictionaries will be merged, but any existing keys will not be overwritten.