static public function each(arr:Array, operation:Function):Void
Call the operation by pass each element of the array once.
for example:
//hide all component in vector components ArrayUtils.each( components, function(c:Component){ c.setVisible(false); });Parameters
arr | the array for each element will be operated. |