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

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

Issue 11405003: Update fixnum to new package guidelines. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 part of fixnum; 5 part of fixnum;
6 6
7 /** 7 /**
8 * A fixed-precision integer. 8 * A fixed-precision integer.
9 */ 9 */
10 abstract class intx implements Comparable { 10 abstract class intx implements Comparable {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 * Returns the value of this [intx] as a hexadecimal [String]. 96 * Returns the value of this [intx] as a hexadecimal [String].
97 */ 97 */
98 String toHexString(); 98 String toHexString();
99 99
100 /** 100 /**
101 * Returns the value of this [intx] as a [String] in the given radix. 101 * Returns the value of this [intx] as a [String] in the given radix.
102 * [radix] must be an integer between 2 and 16, inclusive. 102 * [radix] must be an integer between 2 and 16, inclusive.
103 */ 103 */
104 String toRadixString(int radix); 104 String toRadixString(int radix);
105 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698