2021-09-24 15:24:43 +00:00
|
|
|
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
|
|
|
|
|
|
|
|
<a name="#dicts.add"></a>
|
|
|
|
|
2019-02-28 22:43:57 +00:00
|
|
|
## dicts.add
|
|
|
|
|
|
|
|
<pre>
|
2019-03-26 11:38:49 +00:00
|
|
|
dicts.add(<a href="#dicts.add-dictionaries">dictionaries</a>, <a href="#dicts.add-kwargs">kwargs</a>)
|
2019-02-28 22:43:57 +00:00
|
|
|
</pre>
|
|
|
|
|
|
|
|
Returns a new `dict` that has all the entries of the given dictionaries.
|
|
|
|
|
|
|
|
If the same key is present in more than one of the input dictionaries, the
|
|
|
|
last of them in the argument list overrides any earlier ones.
|
|
|
|
|
|
|
|
This function is designed to take zero or one arguments as well as multiple
|
|
|
|
dictionaries, so that it follows arithmetic identities and callers can avoid
|
|
|
|
special cases for their inputs: the sum of zero dictionaries is the empty
|
|
|
|
dictionary, and the sum of a single dictionary is a copy of itself.
|
|
|
|
|
|
|
|
|
2021-09-24 15:24:43 +00:00
|
|
|
**PARAMETERS**
|
|
|
|
|
|
|
|
|
|
|
|
| Name | Description | Default Value |
|
|
|
|
| :-------------: | :-------------: | :-------------: |
|
|
|
|
| dictionaries | Zero or more dictionaries to be added. | none |
|
|
|
|
| kwargs | Additional dictionary passed as keyword args. | none |
|
2019-02-28 22:43:57 +00:00
|
|
|
|
|
|
|
|