index Zimbu documentation

MODULE INT @public

summary

     

Methods for the builtin int type.

CLASS  int @public  The builtin type int: 64 bit integer number.
 
int  max @public  Maximum value of an int.
int  min @public  Minimum value of an int.
 

members (alphabetically)

     

int max @public

     

Maximum value of an int.

Used as T.int.max

Javascript note: As Javascript uses a float to store the number it will be rounded off from 9223372036854775807 to 9223372036854776000. The largest number that is not rounded off is 2^53, or 9007199254740992.

int min @public

     

Minimum value of an int.

Used as T.int.min

Javascript note: As Javascript uses a float to store the number it will be rounded off from -9223372036854775808 to -9223372036854776000. The most negative number that is not rounded off is -2^53, or -9007199254740992.

license

      Copyright 2012 Bram Moolenaar All Rights Reserved.

      Licensed under the Apache License, Version 2.0. See the LICENSE file or obtain a copy at: http://www.apache.org/licenses/LICENSE-2.0