as3-collections icon indicating copy to clipboard operation
as3-collections copied to clipboard

Collection Bindings

Open danschultz opened this issue 14 years ago • 1 comments

Collections should be able to support dispatching notifications when a collection changes.

One way to accomplish this is to create a set of wrapper classes for each base type of collection (i.e. Map, List, Set). These wrappers will delegate functionality to their wrapped collection. Modification methods will dispatch a notification.

Example var map:HashMap = new HashMap(); map = new BindableMap(map);

danschultz avatar Nov 19 '10 03:11 danschultz

+1 very useful feature

profelis avatar Jun 28 '11 19:06 profelis