Cldr.Map.delete_in

You're seeing just the function delete_in, go back to Cldr.Map module for more information.

Delete all members of a map that have a key in the list of keys

Examples

iex> Cldr.Map.delete_in %{a: "a", b: "b"}, [:a]
%{b: "b"}