A question about Vector type

hi,

is there any short way to init Vector items like initing Array? Like this:


var A:Array = [0, 1, 2, 3]; // great way to init array items
var V:Vector.<int> = new Vector.<int>() = [0, 1, 2, 3] // how to init items here
// to avoid pushing every items:
V.push(0);
V.push(1);
V.push(2);
V.push(3);

thanks!