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

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

package flair.utils.math
{
	/**
	 * Optimized Math.round
	 */
	public function round( n : Number ) : int
	{
		return n < 0 ? n + .5 == ( n | 0 ) ? n : n - .5 : n + .5;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy