class MyUtil {}
class MyUtil {public static function MyUtilFunction(params_here):Number {// do stuff with params and return result}}
class MyUtil {private function MyUtil() {}}
class ArrayUtils {private function ArrayUtils() {} // returns index of an item in array, -1 if it isn't in the arraypublic static function inArray(array:Array, item:Object):Number { [..]} // tries to remove an item from array and returns whether it workedpublic static function arrayRemove(array:Array, item:Object):Boolean { [..]}}
var names:Array = new Array("Bob", "Shirley", "Pete");trace(ArrayUtils.arrayRemove(array, "Bob")); // traces "true"trace(ArrayUtils.arrayRemove(array, "Bill")); // traces "false"