ActionScript Reading A Vector's DataType?
Posted
by TheDarkIn1978
on Stack Overflow
See other posts from Stack Overflow
or by TheDarkIn1978
Published on 2010-05-24T16:56:11Z
Indexed on
2010/05/24
17:01 UTC
Read the original article
Hit count: 176
actionscript-3
|vector
is it possible to read the datatype of a vector?
var vec:Vector.<int> = new Vector.<int>;
trace(the datatype of vec);
//ideally this would output 'int'
© Stack Overflow or respective owner