Integer(native)
All integers are represented by this class.
Properties
-
MAX : Integer
Maximum signed integer value. (2147483647)
-
MIN : Integer
Minimal value of integer type. (-2147483648)
Methods
-
isFinite() : Boolean
Returns true if this value is a finite number.
-
isNaN() : Boolean
Returns true if this value appears to be not a number.
-
limit(min, max) : Integer
Method - returns clipped value of this integer.
-
max(..) : Integer
Find maximum value of arguments.
-
min(..) : Integer
Find minimum value of arguments.
-
toFloat() : Float
Converts this integer value to float.
-
toString(radix) : String
Returns string representation of the integer using one of radix value: 10 (default), 8 or 16.