Iterate through keys & values:
for (var k:Object in dictionary) {
var value:ValType = dictionary[k];
var key:KeyType = k;
}
Iterate through values more concisely:
for each (var value:ValType in dictionary) {
}
Iterate through keys & values:
for (var k:Object in dictionary) {
var value:ValType = dictionary[k];
var key:KeyType = k;
}
Iterate through values more concisely:
for each (var value:ValType in dictionary) {
}