Quick Tip: Multi-Dimensional Vectors
Have you ever thought of creating or using multi-dimensional Vector in ActionScript? Yes, it is possible and the definition syntax comes pretty logical to me now
.
var list:Vector.<Vector.<int>> = new Vector.<Vector.<int>>();
…or shorter declaration:
var list:Vector.<Vector.<int>> = new <Vector.<int>>[];
now your vectors have two dimensions, I mean:
list[0][0]