Java Utililty Methods Abs

List of utility methods to do Abs

Description

The list of methods to do Abs are organized into topic(s).

Method

intAbsolute(int a)
Absolute
return (a > 0 ? a : -a);