File tree 3 files changed +8
-2
lines changed 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.2.0-wip
2
+
3
+ * Change ` IntX ` such that it implements ` Comparable<IntX> ` . This makes it
4
+ possible for ` IntX ` (and in turn ` Int64 ` and ` Int32 ` ) be used with methods
5
+ like ` sortedBy ` in the platform libraries.
6
+
1
7
## 1.1.1
2
8
3
9
* Require Dart ` ^3.1.0 `
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import 'int32.dart';
6
6
import 'int64.dart' ;
7
7
8
8
/// A fixed-precision integer.
9
- abstract class IntX implements Comparable <Object > {
9
+ abstract class IntX implements Comparable <IntX > {
10
10
/// Addition operator.
11
11
IntX operator + (Object other);
12
12
Original file line number Diff line number Diff line change 1
1
name : fixnum
2
- version : 1.1.1
2
+ version : 1.2.0-wip
3
3
description : >-
4
4
Library for 32- and 64-bit signed fixed-width integers with consistent
5
5
behavior between native and JS runtimes.
You can’t perform that action at this time.
0 commit comments