package starling.utils {
/**
 * A Collection of largest/smallest representable numbers.
 *  
 * @externs
 */
public class Max {
	/**
	 *  The largest representable number. 
	 */
	public static const MAX_VALUE:Number = 1.79e+308;
	/**
	 *  The smallest representable number. 
	 */
	public static const MIN_VALUE:Number = 5e-324;
	/**
	 *  The largest representable 32-bit signed integer. 
	 */
	public static const INT_MAX_VALUE:int = 2147483647;
	/**
	 *  The smallest representable 32-bit signed integer. 
	 */
	public static const INT_MIN_VALUE:int = -2147483647;
	/**
	 *  he largest representable 32-bit unsigned integer. 
	 */
	public static const UINT_MAX_VALUE:int = -1;
}
}
