Performance with for...in loops

So this is an odd question…
In AS3, when you do a for… in loop, the iterator is of type String…
That does mean when your indexing into a Vector (or what ever) it has to cast to the appropriate type (Number?) does it not?..

Am I correct in saying that it’s faster to use a for loop w/ conditionals and an iterator of type Number, and then I assume faster still to use a simple while loop?