![JAR search and dependency download from the Maven repository](/logo.png)
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