Is this the right way to free the values and the hashmap itself of a AutoHashMap?
(where the values are structs which need deinitialization, the key is a simple u8).
var it = hash.valueIterator();
while (it.next()) |value|
{
value.deinit();
}
hash.deinit();