OLD | NEW |
| (Empty) |
1 part of dart.core; | |
2 abstract class int extends num {external const factory int.fromEnvironment(Stri
ng name, { | |
3 int defaultValue} | |
4 ); | |
5 int operator &(int other); | |
6 int operator |(int other); | |
7 int operator ^(int other); | |
8 int operator ~(); | |
9 int operator <<(int shiftAmount); | |
10 int operator >>(int shiftAmount); | |
11 bool get isEven; | |
12 bool get isOdd; | |
13 int get bitLength; | |
14 int toUnsigned(int width); | |
15 int toSigned(int width); | |
16 int operator -(); | |
17 int abs(); | |
18 int get sign; | |
19 int round(); | |
20 int floor(); | |
21 int ceil(); | |
22 int truncate(); | |
23 double roundToDouble(); | |
24 double floorToDouble(); | |
25 double ceilToDouble(); | |
26 double truncateToDouble(); | |
27 String toString(); | |
28 String toRadixString(int radix); | |
29 external static int parse(String source, { | |
30 int radix, int onError(String source)} | |
31 ); | |
32 } | |
OLD | NEW |