Cold Help System: Programming: ColdC Reference Manual: Functions: Dictionary: dict_del()


DICTIONARY dict_del(DICTIONARY dict, ANY key)

This function the key value association from the dictionary dict and returns the result. If there is no association with the specified key, then the error ~keynf is thrown. Example:

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


dict_add() | dict_contains() | dict_del() | dict_keys() | dict_union() | dict_values()


the Cold Dark