[ https://issues.apache.org/jira/browse/FLEX-33116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Justin Mclean resolved FLEX-33116. ---------------------------------- Resolution: Fixed > Add Vector implementations of IList and ICollectionView > ------------------------------------------------------- > > Key: FLEX-33116 > URL: https://issues.apache.org/jira/browse/FLEX-33116 > Project: Apache Flex > Issue Type: Improvement > Reporter: Alex Harui > Priority: Minor > Labels: List, collections > > VectorList and VectorCollection, similar to ArrayList and ArrayCollection. > Feels weird that I need to convert Vectors to Arrays to use in Flex > collections. > In case anyone is unaware, you can cast Vector.<WhateverTypeYouWant> as > Vector.<*>. Works with the "as" and "is" keywords, as you can see below: > var strings:Vector.<String> = new <String>["One", "Two", "Three"]; > trace(strings is Vector.<*>); //true > var generic:Vector.<*> = strings as Vector.<*>; > trace(strings) //One, Two, Three -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira