Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: pkg/fixnum/intx.dart

Issue 11191078: Make hashCode a getter and not a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 { 8 abstract class intx implements Comparable {
9 9
10 // Arithmetic operations. 10 // Arithmetic operations.
(...skipping 28 matching lines...) Expand all
39 bool operator >=(other); 39 bool operator >=(other);
40 40
41 // Testers. 41 // Testers.
42 bool isEven(); 42 bool isEven();
43 bool isMaxValue(); 43 bool isMaxValue();
44 bool isMinValue(); 44 bool isMinValue();
45 bool isNegative(); 45 bool isNegative();
46 bool isOdd(); 46 bool isOdd();
47 bool isZero(); 47 bool isZero();
48 48
49 int hashCode(); 49 int get hashCode;
50 50
51 intx abs(); 51 intx abs();
52 52
53 /** 53 /**
54 * Returns the number of leading zeros in this [intx] as an [int] 54 * Returns the number of leading zeros in this [intx] as an [int]
55 * between 0 and 64. 55 * between 0 and 64.
56 */ 56 */
57 int numberOfLeadingZeros(); 57 int numberOfLeadingZeros();
58 58
59 /** 59 /**
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698