| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 /** | 5 /** |
| 6 * A fixed-precision integer. | 6 * A fixed-precision integer. |
| 7 */ | 7 */ |
| 8 abstract class intx implements Comparable, Hashable { | 8 abstract class intx implements Comparable { |
| 9 | 9 |
| 10 // Arithmetic operations. | 10 // Arithmetic operations. |
| 11 intx operator +(other); | 11 intx operator +(other); |
| 12 intx operator -(other); | 12 intx operator -(other); |
| 13 // The unary '-' operator. Note that -MIN_VALUE will be equal | 13 // The unary '-' operator. Note that -MIN_VALUE will be equal |
| 14 // to MIN_VALUE due to overflow. | 14 // to MIN_VALUE due to overflow. |
| 15 intx operator -(); | 15 intx operator -(); |
| 16 intx operator *(other); | 16 intx operator *(other); |
| 17 intx operator %(other); | 17 intx operator %(other); |
| 18 // Truncating division. | 18 // Truncating division. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 * Returns the value of this [intx] as a hexadecimal [String]. | 94 * Returns the value of this [intx] as a hexadecimal [String]. |
| 95 */ | 95 */ |
| 96 String toHexString(); | 96 String toHexString(); |
| 97 | 97 |
| 98 /** | 98 /** |
| 99 * Returns the value of this [intx] as a [String] in the given radix. | 99 * Returns the value of this [intx] as a [String] in the given radix. |
| 100 * [radix] must be an integer between 2 and 16, inclusive. | 100 * [radix] must be an integer between 2 and 16, inclusive. |
| 101 */ | 101 */ |
| 102 String toRadixString(int radix); | 102 String toRadixString(int radix); |
| 103 } | 103 } |
| OLD | NEW |