How do I define C++-like templates in AS3?; I have a map class (2d array) that I want to re-use across projects but the cell data is a different class depending on the project or implementation;
There are a bunch of other reasons regarding sharing code accross different implementations, but I'd hope for somthing like:
map = new MyMap<MyCell>();
Doesn't matter if it's Flash 10 only :-p
Cheers, Chris
There aren't templates, but dynamic typing and using classes as values might be good enough for your purposes.
You can make a class that takes a class and stores it as an instance variable.
And then you feed the class to it...
And then in methods, you can refer to that class.
You can't make your own template classes. The only one you have in the whole of AS3 is
Vector
.There's an open feature request for the same on JIRA. Feel free to upvote.