(double value)
| 65 | /// If the argument is NaN, the result is 0x7ff8000000000000L. |
| 66 | /// In all cases, the result is a long integer that, when given to the longBitsToDouble(long) method, will produce a floating-point value equal to the argument to doubleToLongBits. |
| 67 | public static long doubleToLongBits(double value){ |
| 68 | return 0l; //TODO codavaj!! |
| 69 | } |
| 70 | |
| 71 | /// Returns the double value of this Double. |
| 72 | public double doubleValue(){ |
no outgoing calls
no test coverage detected