Cldr.Map.merge_map_list
You're seeing just the function
merge_map_list
, go back to Cldr.Map module for more information.
Returns the result of deep merging a list of maps
Examples
iex> Cldr.Map.merge_map_list [%{a: "a", b: "b"}, %{c: "c", d: "d"}]
%{a: "a", b: "b", c: "c", d: "d"}