Is there way to get every item in Trie hash map? For example:
Code:
new Trie:triename;
TrieSetCell(triename, "example1", 1)
TrieSetCell(triename, "example2", 2)
for(new i=0;i<TrieGetSize(triename);i++) {
client_print(0, print_chat, triename_items[i]) //
}
Output would be:
1
2
Edit: I know that it is hash, but still, is there way?
Edit2: Solved with Trie Snapshots..