| OLD | NEW |
| (Empty) |
| 1 part of dart.core; | |
| 2 abstract class double extends num {static const double NAN = 0.0 / 0.0; | |
| 3 static const double INFINITY = 1.0 / 0.0; | |
| 4 static const double NEGATIVE_INFINITY = -INFINITY; | |
| 5 static const double MIN_POSITIVE = 5e-324; | |
| 6 static const double MAX_FINITE = 1.7976931348623157e+308; | |
| 7 double remainder(num other); | |
| 8 double operator +(num other); | |
| 9 double operator -(num other); | |
| 10 double operator *(num other); | |
| 11 double operator %(num other); | |
| 12 double operator /(num other); | |
| 13 int operator ~/(num other); | |
| 14 double operator -(); | |
| 15 double abs(); | |
| 16 double get sign; | |
| 17 int round(); | |
| 18 int floor(); | |
| 19 int ceil(); | |
| 20 int truncate(); | |
| 21 double roundToDouble(); | |
| 22 double floorToDouble(); | |
| 23 double ceilToDouble(); | |
| 24 double truncateToDouble(); | |
| 25 String toString(); | |
| 26 external static double parse(String source, [double onError(String source)]); | |
| 27 } | |
| OLD | NEW |