I've been happily using this VectorCollection and VectorList implementation from David Beale for some time: http://vectorcollection.riaforge.org/
It's licensed under the Apache license. Doesn't sound like we have a shortage of code, but if you're comparing implementations, I wanted to make sure the implementors saw it. - Taylor On Tue, Apr 3, 2012 at 6:14 AM, Saurabh Jain (Issue Comment Edited) (JIRA) < j...@apache.org> wrote: > > [ > https://issues.apache.org/jira/browse/FLEX-36?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13245017#comment-13245017] > > Saurabh Jain edited comment on FLEX-36 at 4/3/12 6:13 AM: > ---------------------------------------------------------- > > I have created a VectorUtil class some time back. > May be you guys can have a look at it and see if this is useful > > http://saurabhpjain.wordpress.com/2012/04/03/flex-vector-util-class/ > > was (Author: jainsaurabh86): > I have created a VectorUtil class some time. May be you guys can have > a look at it and see if this is useful > > http://saurabhpjain.wordpress.com/2012/04/03/flex-vector-util-class/ > > > Add Vector implementations of IList and ICollectionView > > ------------------------------------------------------- > > > > Key: FLEX-36 > > URL: https://issues.apache.org/jira/browse/FLEX-36 > > Project: Apache Flex > > Issue Type: Improvement > > Reporter: Josh Tynjala > > Assignee: Bertrand Delacretaz > > 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: > https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa > For more information on JIRA, see: http://www.atlassian.com/software/jira > > >