Chromium Code Reviews| 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 interface num extends Comparable, Hashable { | 7 abstract class num implements Comparable, Hashable { |
|
Ivan Posva
2012/08/23 06:13:44
This should be extends as far as I am concerned.
sra1
2012/08/23 18:18:19
You can only extend one class, but you can impleme
hausner
2012/08/23 18:34:10
It cannot be extends, because we can't extend more
| |
| 8 factory num._uninstantiable() => null; | |
| 9 | |
| 8 // Arithmetic operations. | 10 // Arithmetic operations. |
| 9 num operator +(num other); | 11 abstract num operator +(num other); |
| 10 num operator -(num other); | 12 abstract num operator -(num other); |
| 11 num operator *(num other); | 13 abstract num operator *(num other); |
| 12 num operator %(num other); | 14 abstract num operator %(num other); |
| 13 double operator /(num other); | 15 abstract double operator /(num other); |
| 14 // Truncating division. | 16 // Truncating division. |
| 15 num operator ~/(num other); | 17 abstract num operator ~/(num other); |
| 16 // The unary '-' operator. | 18 // The unary '-' operator. |
| 17 num operator negate(); | 19 abstract num operator negate(); |
| 18 num remainder(num other); | 20 abstract num remainder(num other); |
| 19 | 21 |
| 20 // Relational operations. | 22 // Relational operations. |
| 21 bool operator <(num other); | 23 abstract bool operator <(num other); |
| 22 bool operator <=(num other); | 24 abstract bool operator <=(num other); |
| 23 bool operator >(num other); | 25 abstract bool operator >(num other); |
| 24 bool operator >=(num other); | 26 abstract bool operator >=(num other); |
| 25 | 27 |
| 26 // Predicates. | 28 // Predicates. |
| 27 bool isNaN(); | 29 abstract bool isNaN(); |
| 28 bool isNegative(); | 30 abstract bool isNegative(); |
| 29 bool isInfinite(); | 31 abstract bool isInfinite(); |
| 30 | 32 |
| 31 num abs(); | 33 abstract num abs(); |
| 32 num round(); | 34 abstract num round(); |
| 33 num floor(); | 35 abstract num floor(); |
| 34 num ceil(); | 36 abstract num ceil(); |
| 35 num truncate(); | 37 abstract num truncate(); |
| 36 | 38 |
| 37 int toInt(); | 39 abstract int toInt(); |
| 38 double toDouble(); | 40 abstract double toDouble(); |
| 39 | 41 |
| 40 String toStringAsFixed(int fractionDigits); | 42 abstract String toStringAsFixed(int fractionDigits); |
| 41 String toStringAsExponential(int fractionDigits); | 43 abstract String toStringAsExponential(int fractionDigits); |
| 42 String toStringAsPrecision(int precision); | 44 abstract String toStringAsPrecision(int precision); |
| 43 String toRadixString(int radix); | 45 abstract String toRadixString(int radix); |
| 44 } | 46 } |
| OLD | NEW |