All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaffold.libs_as.flair.utils.math.ceil.as Maven / Gradle / Ivy

package flair.utils.math
{
	/**
	 * Optimized Math.ceil
	 */
	public function ceil( n : Number ) : int
	{
		var ni : int = n;
		return ( n >= 0 && n != ni ) ? ni + 1 : ni;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy