max


Description:

[ CCode ( cname = "MAX" ) ]
public static uint16 max (uint16 a, uint16 b)

Example: Calculate the maximum via .max():

public static int main (string[] args) {
// Output: ``max (100, 900) = 900``
uint16 max = uint16.max (100, 900);
print ("max (100, 900) = %lu\n", max);
return 0;
}

valac --pkg glib-2.0 uint16.max.vala