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