as3corelib
as3corelib copied to clipboard
Add shuffle method to ArrayUtil class
It's a simple feature that are implemented in different ways around the community. It would be nice if as3corelib natively support it.
var array : Array = new Array(1,2,3,4,5); ArrayUtil.shuffle(array); trace(array); // shuffled items
Shuffling something isn't really a prime feature ... it's not necessary for wide usage. As such i think it'd be not a good idea to add as it would increase the swc size ( without needing it most of the time ). If you need a shuffling function then i suggest taking the source and extending it :) ( it's not that hard to write one )