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.
ht
hashtable_entries(#{1:2, 'hello:"world"}) // #[1, hello]:#[2, world]
Core Module Index | Contents