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

Side by Side Diff: README.md

Issue 1834783004: Merge in changes from SDK branch (Closed) Base URL: https://github.com/dart-lang/fixnum@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « no previous file | lib/src/int32.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 [![Build Status](https://travis-ci.org/dart-lang/fixnum.svg?branch=master)](http s://travis-ci.org/dart-lang/fixnum) 6 [![Build Status](https://travis-ci.org/dart-lang/fixnum.svg?branch=master)](http s://travis-ci.org/dart-lang/fixnum)
7 [![Coverage Status](https://img.shields.io/coveralls/dart-lang/fixnum.svg)](http s://coveralls.io/r/dart-lang/fixnum) 7 [![Coverage Status](https://img.shields.io/coveralls/dart-lang/fixnum.svg)](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).
OLDNEW
« no previous file with comments | « no previous file | lib/src/int32.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698