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


LIST dict_values(DICTIONARY dict)

This function returns a correctly ordered list of the keys of the associations in dict. Example:

dict_values(#[["foo", 1], ["bar", 2], ['baz, 3]])
=> [1, 2, 3]


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


the Cold Dark