List of utility methods to do Number Max Value
float | Max(float a, float b) Max return ((a) < (b) ? (b) : (a));
|
float | max(float a, float b) max return (a >= b) ? a : b;
|
float | max(float a, float b) maximum, simpler and faster than Math.max without its additional tests return (a > b) ? a : b;
|
float | max(float a, float b, float c) Returns the maximum value of three floats. return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c);
|
float | max(float a, float b, float c, float d, float e) max float m = a; m = b > m ? b : m; m = c > m ? c : m; m = e > m ? e : m; return d > m ? d : m; |
float | max(float dirOffset, float min, float max) Gets the maximum of two values based on direction return dirOffset == 1 ? 1 : dirOffset == -1 ? min : max;
|
float | max(float value1, float value2) max return Math.max(value1, value2);
|
float | max(float value1, float value2) Returns the greater of two values. return Math.max(value1, value2);
|
float | max(float x0, float x1) Returns the greater of the two given values. return x0 >= x1 ? x0 : x1;
|
int | max(int a, int b) Returns the bigger number of a and b. return a > b ? a : b;
|