hashtable_entries


hashtable_entries(ht)
      

Return a pair of arrays – the first one with the keys and the second one with the values from the hash table ht.

Examples:


hashtable_entries(#{1:2, 'hello:"world"})
// #[1, hello]:#[2, world]
      

Also see:

hashtable_keys
hashtable_values


Core Module Index | Contents