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


LIST dict_keys(DICTIONARY dict)

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

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


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


the Cold Dark