Attributes
Members list
Value members
Concrete methods
Transforms a value type into a boxed reference type.
Transforms a value type into a boxed reference type.
Runtime implementation determined by scala.runtime.BoxesRunTime.boxToDouble. See src/library/scala/runtime/BoxesRunTime.java.
Value parameters
- x
-
the Double to be boxed
Attributes
- Returns
-
a java.lang.Double offering
xas its underlying value.
The String representation of the scala.Double companion object.
The String representation of the scala.Double companion object.
Attributes
- Definition Classes
-
Any
Transforms a boxed type into a value type. Note that this method is not typesafe: it accepts any Object, but will throw an exception if the argument is not a java.lang.Double.
Transforms a boxed type into a value type. Note that this method is not typesafe: it accepts any Object, but will throw an exception if the argument is not a java.lang.Double.
Runtime implementation determined by scala.runtime.BoxesRunTime.unboxToDouble. See src/library/scala/runtime/BoxesRunTime.java.
Value parameters
- x
-
the java.lang.Double to be unboxed.
Attributes
- Returns
-
the Double resulting from calling doubleValue() on
x - Throws
-
ClassCastException
if the argument is not a java.lang.Double
Concrete fields
The largest finite positive number representable as a Double.
The largest finite positive number representable as a Double.
Attributes
The smallest positive value greater than 0.0d which is representable as a Double.
The smallest positive value greater than 0.0d which is representable as a Double.
Attributes
The negative number with the greatest (finite) absolute value which is representable by a Double. Note that it differs from java.lang.Double.MIN_VALUE, which is the smallest positive value representable by a Double. In Scala that number is called Double.MinPositiveValue.
The negative number with the greatest (finite) absolute value which is representable by a Double. Note that it differs from java.lang.Double.MIN_VALUE, which is the smallest positive value representable by a Double. In Scala that number is called Double.MinPositiveValue.