Say i have following keys in hashtable:
"first1"
"second2"
"third3"
"forth4"
Is there a way to put key "third3"
at the top. So that when i run func hash-table-keys
i get following list:
("third3" "first1" "second2" "forth4")
I tried running remhash
followed by puthash
. But the order stays the same.