second.
@param second: Second Array to compare to the first.
@return Returns true if Arrays are the same; otherwise false.
*/
public function equals(first:Array, second:Array):Boolean
{
var i:uint = first.length;
if (i != second.length)
return false;
while (i--)
if (first[i] != second[i])
return false;
return true;
}
}