Double..Root.DoubleConstructs new Double.
Double of value 0.0Double type signatures:Object, Basic, Double
NativeCallable, Callable, Class
toString converts floating point number to string, returns new StringtoInt converts floating point number to integer, returns new InttoDouble equivalent of copytoBoolean converts floating point number to logical value, returns new Boolean++ increments this object, returns reference to this object-- decrements this object, returns reference to this object== compares two floating point numbers, returns new Boolean+ adds two floating point numbers, returns new Double- subtracts one floating point number from another, returns new Double> compares two floating point numbers, returns new Boolean< compares two floating point numbers, returns new Boolean>= compares two floating point numbers, returns new Boolean<= compares two floating point numbers, returns new Boolean* multiplies two floating point numbers, returns new Double/ divides one floating point number by another, returns new Doublelog(13.0./(7.0));