dart-sdk/pkg/fixnum
Stephen Adams 7926e2630f Better errors for pkg/fixnum
Replace `new ArgumentError(x)` with `new ArgumentError.value(x)`.
Throw RangeError for bad radix arguments.

R=cbracken@google.com

Review URL: https://codereview.chromium.org//1184183006.
2015-06-19 12:35:07 -07:00
..
lib Better errors for pkg/fixnum 2015-06-19 12:35:07 -07:00
test Better errors for pkg/fixnum 2015-06-19 12:35:07 -07:00
LICENSE pkg/unittest: added LICENSE 2014-01-13 18:07:45 +00:00
pubspec.yaml Better errors for pkg/fixnum 2015-06-19 12:35:07 -07:00
README.md Added fixnum package docs. 2013-08-14 18:30:55 +00:00

fixnum

A fixed-size integer library for Dart.


The fixnum package provides data types for signed 32- and 64-bit integers. The integer implementations in this library are designed to work identically whether executed on the Dart VM or compiled to JavaScript.

Installing

Use pub to install this package. Add the following to your pubspec.yaml file:

dependencies:
  fixnum: any

Then run pub install.

For more information, see the fixnum package on pub.dartlang.org.