Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 fixnum | |
| 2 ====== | |
| 3 | |
| 4 A fixed-size integer package for Dart. | |
| 5 - - - | |
| 6 The fixnum package provides data types for signed 32- and 64-bit integers. | |
| 7 These integer implementations in this library are designed to work identically | |
|
Kathy Walrath
2013/08/14 17:55:28
These -> The
Chris Bracken
2013/08/14 18:13:58
Done.
| |
| 8 whether executed on the Dart VM or compiled to JavaScript. | |
| 9 | |
| 10 Installing | |
| 11 ---------- | |
| 12 | |
| 13 Use [pub][] to install this package. Add the following to your `pubspec.yaml` | |
| 14 file. | |
| 15 | |
| 16 dependencies: | |
| 17 fixnum: any | |
| 18 | |
| 19 Then run `pub install`. | |
| 20 | |
| 21 For more information, see the | |
| 22 [fixnum package on pub.dartlang.org](http://pub.dartlang.org/packages/fixnum). | |
| 23 | |
| 24 [pub]: http://pub.dartlang.org | |
| OLD | NEW |