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