Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 Fixnum | 1 Fixnum |
| 2 ====== | 2 ====== |
| 3 | 3 |
| 4 A fixed-width 32- and 64- bit integer library for Dart. | 4 A fixed-width 32- and 64- bit integer library for Dart. |
| 5 | 5 |
| 6 [](http s://travis-ci.org/dart-lang/fixnum) | 6 [](http s://travis-ci.org/dart-lang/fixnum) |
| 7 [](http s://coveralls.io/r/dart-lang/fixnum) | 7 [](http s://coveralls.io/r/dart-lang/fixnum) |
| 8 | 8 |
| 9 ## Documentation | 9 ## Documentation |
| 10 | 10 |
| 11 The fixnum package provides data types for signed 32- and 64-bit integers. | 11 The fixnum package provides data types for signed 32- and 64-bit integers. |
| 12 The integer implementations in this library are designed to work identically | 12 The integer implementations in this library are designed to work identically |
| 13 whether executed on the Dart VM or compiled to JavaScript. | 13 whether executed on the Dart VM or compiled to JavaScript. |
| 14 | 14 |
| 15 ## Installation | 15 ## Installation |
|
kevmoo
2016/03/26 05:39:47
Just kill this whole section – it's pretty obvious
| |
| 16 | 16 |
| 17 Use [pub](http://pub.dartlang.org) to install this package. Add the following | 17 Use [pub](http://pub.dartlang.org) to install this package. Add the following |
| 18 to your `pubspec.yaml` file: | 18 to your `pubspec.yaml` file: |
| 19 | 19 |
| 20 dependencies: | 20 dependencies: |
| 21 fixnum: '>=0.9.1 <0.10.0' | 21 fixnum: any |
| 22 | 22 |
| 23 For more information, see the | 23 For more information, see the |
| 24 [fixnum package](http://pub.dartlang.org/packages/fixnum) on | 24 [fixnum package](http://pub.dartlang.org/packages/fixnum) on |
| 25 [pub.dartlang.org](http://pub.dartlang.org). | 25 [pub.dartlang.org](http://pub.dartlang.org). |
| OLD | NEW |