MCPcopy
hub / github.com/chriskiehl/Gooey / merge

Function merge

gooey/util/functional.py:41–44  ·  view source on GitHub ↗

Merge all maps left to right

(*maps)

Source from the content-addressed store, hash-verified

39
40
41def merge(*maps):
42 """Merge all maps left to right"""
43 copies = map(deepcopy, maps)
44 return reduce(lambda acc, val: acc.update(val) or acc, copies)
45
46
47def flatmap(f, coll):

Callers 15

GooeyFunction · 0.90
handle_option_mergeFunction · 0.90
categorize2Function · 0.90
build_radio_groupFunction · 0.90
action_to_jsonFunction · 0.90
instrumentGooeyFunction · 0.90
run_integrationFunction · 0.90
_build_appFunction · 0.90
loadImagesFunction · 0.90
getValueMethod · 0.90
__init__Method · 0.90
__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected