package starling.utils;

/**
 * A Collection of largest/smallest representable numbers.
 */
class Max
{
	/** The largest representable number. */
	public static inline var MAX_VALUE:Float = 1.79e+308;

	/** The smallest representable number. */
	public static inline var MIN_VALUE:Float = 5e-324;

	/** The largest representable 32-bit signed integer. */
	public static inline var INT_MAX_VALUE:Int = 2147483647;

	/** The smallest representable 32-bit signed integer. */
	public static inline var INT_MIN_VALUE:Int = -2147483647;

    /** he largest representable 32-bit unsigned integer. */
    public static inline var UINT_MAX_VALUE:UInt = 0xffffffff;
}