Returns whether the specified value is an integer.
Syntax
isInteger( object )
object.isInteger( )
Parameters
object
|
the object to check.
|
Returns
boolean
|
true if object is an instance of an integer.
false if object is not an instance of an integer.
|
Example
if isInteger( obj ) then
println( "is instance of an integer" )
end
|