( begin auto-generated from max.xml ) Determines the largest value in a sequence of numbers. ( end auto-generated ) @webref math:calculation @param a first number to compare @param b second number to compare @see PApplet#min(float, float, float)
(int a, int b)
| 4554 | * @see PApplet#min(float, float, float) |
| 4555 | */ |
| 4556 | static public final int max(int a, int b) { |
| 4557 | return (a > b) ? a : b; |
| 4558 | } |
| 4559 | |
| 4560 | static public final float max(float a, float b) { |
| 4561 | return (a > b) ? a : b; |
no outgoing calls
no test coverage detected