| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Dart core library. | 5 // Dart core library. |
| 6 | 6 |
| 7 abstract class num implements Comparable, Hashable { | 7 abstract class num implements Comparable, Hashable { |
| 8 // Arithmetic operations. | 8 // Arithmetic operations. |
| 9 abstract num operator +(num other); | 9 num operator +(num other); |
| 10 abstract num operator -(num other); | 10 num operator -(num other); |
| 11 abstract num operator *(num other); | 11 num operator *(num other); |
| 12 abstract num operator %(num other); | 12 num operator %(num other); |
| 13 abstract double operator /(num other); | 13 double operator /(num other); |
| 14 // Truncating division. | 14 // Truncating division. |
| 15 abstract num operator ~/(num other); | 15 num operator ~/(num other); |
| 16 // The unary '-' operator. | 16 // The unary '-' operator. |
| 17 abstract num operator -(); | 17 num operator -(); |
| 18 abstract num remainder(num other); | 18 num remainder(num other); |
| 19 | 19 |
| 20 // Relational operations. | 20 // Relational operations. |
| 21 abstract bool operator <(num other); | 21 bool operator <(num other); |
| 22 abstract bool operator <=(num other); | 22 bool operator <=(num other); |
| 23 abstract bool operator >(num other); | 23 bool operator >(num other); |
| 24 abstract bool operator >=(num other); | 24 bool operator >=(num other); |
| 25 | 25 |
| 26 // Predicates. | 26 // Predicates. |
| 27 abstract bool isNaN(); | 27 bool isNaN(); |
| 28 abstract bool isNegative(); | 28 bool isNegative(); |
| 29 abstract bool isInfinite(); | 29 bool isInfinite(); |
| 30 | 30 |
| 31 abstract num abs(); | 31 num abs(); |
| 32 abstract num round(); | 32 num round(); |
| 33 abstract num floor(); | 33 num floor(); |
| 34 abstract num ceil(); | 34 num ceil(); |
| 35 abstract num truncate(); | 35 num truncate(); |
| 36 | 36 |
| 37 abstract int toInt(); | 37 int toInt(); |
| 38 abstract double toDouble(); | 38 double toDouble(); |
| 39 | 39 |
| 40 abstract String toStringAsFixed(int fractionDigits); | 40 String toStringAsFixed(int fractionDigits); |
| 41 abstract String toStringAsExponential(int fractionDigits); | 41 String toStringAsExponential(int fractionDigits); |
| 42 abstract String toStringAsPrecision(int precision); | 42 String toStringAsPrecision(int precision); |
| 43 abstract String toRadixString(int radix); | 43 String toRadixString(int radix); |
| 44 } | 44 } |
| OLD | NEW |