MIN


Description:

[ CCode ( cname = "G_MININT" ) ]
public const int MIN

Example: Get the minimum value which can be held in a int:

public int main (string[] args) {
// Output: ``int.MIN = -2147483648 (platform-specific)``
print ("int.MIN = %d (platform-specific)\n", int.MIN);
return 0;
}

valac --pkg glib-2.0 int.MIN.vala