null または空の値をすべて削除したい ArrayCollection があります。
コードのどの行でこれを達成できるでしょうか?
これは、パフォーマンスの点でより高速な方法です。
<mx:Script><![CDATA[
public function cleanArrayCollection(collection:ArrayCollection):ArrayCollection{
var currentArray:Array = null;
var newCollection:ArrayCollection = new ArrayCollection();
for(var i:int = 0; i < collection.length; i++){
currentArray = collection.getItemAt(i);
if(currentArray != null && currentArray.length != 0){
newCollection.addItem(currentArray);
}
}
return newCollection;
}
]]></mx:Script>
編集: ロジックの重大なバグを削除しました。