Next: dict_del_elem

Prev: dict_contains

dict_del

dict_del(dictionary, key)
This function returns the result of removing the association in dictionary which has the key key. If there is no such association, then dict_del() raises a ~keynf exception.

dict_del(#[["foo", 1], ["bar", 2]], "foo")
     => #[["bar", 2]]