static public function each(arr:Array, operation:Function):VoidCall 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. |