What's the nicest way to convert a Vector to an Array in Actionscript3?
The normal casting syntax doesn't work:
var myVector:Vector.<Foo> = new Vector();
var myArray:Array = Array(myVector); // calls the top-level function Array()
due to the existance of the Array function. The above results in an array, but it's an array with a single element consisting of the original Vector.
Which leaves the slightly more verbose:
var myArray:Array = new Array();
for each (var elem:Foo in myVector) {
myArray.push(elem);
}
which is fine, I guess, though a bit wordy. Is this the canonical way to do it, or is there a toArray() function hiding somewhere in the standard library?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…