for (var k in dictionary) 
{
  var key:KeyType = KeyType(k);
  var value:ValType = ValType(dictionary[k]); // <-- lookup
  // do stuff
}

This is what I use to loop through the entries in a dictionary. As you can see in every iteration I perform a lookup in the dictionary. Is there a more efficient way of iterating the dictionary (while keeping access to the key)?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 21 down vote accepted
for each (var value:ValType in dictionary) {
 // do stuff
}

since you want to know the key there is no better way than this:

for (var k:Object in dictionary) {
  var value:ValType=dictionary[k];
  var key:KeyType=k;
 // do stuff
}
link|improve this answer
I need to know the key (clarified in my question) – Bart van Heukelom Mar 5 '10 at 13:20
2  
Accepted because it answers the question. As a solution though, I've made a wrapper around dictionary which stores the key and value as value of its dictionary. – Bart van Heukelom Mar 5 '10 at 14:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.