minInt Function

Retrieves the lowest possible value for a variable of type int. Any other integer value will be greater than or equal to the retrieved value.


int minInt()

The minimum value for a variable of type int.

static void minIntExample(Args _arg)
{
    int i;
    ;
    i = minInt();
    print "minInt() is " + int2Str(i);    
    pause;
}

Community Additions

ADD
Show: