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

Unified Diff: pkg/fixnum/lib/fixnum.dart

Issue 23173002: Added fixnum package docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added note on DartVM/dart2js compatibility Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/fixnum/lib/src/intx.dart » ('j') | pkg/fixnum/lib/src/intx.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fixnum/lib/fixnum.dart
diff --git a/pkg/fixnum/lib/fixnum.dart b/pkg/fixnum/lib/fixnum.dart
index 4ac6f2a8d31e4fa6aeecf213297030d98be34e44..009d2d3a9b3fdb637c0e4bde0f42ea6d259310a7 100644
--- a/pkg/fixnum/lib/fixnum.dart
+++ b/pkg/fixnum/lib/fixnum.dart
@@ -2,6 +2,28 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+/**
+ * This library provides fixed-size integer support.
justinfagnani 2013/08/14 17:06:51 mention that it contains a 32 bit and 64 signed in
Kathy Walrath 2013/08/14 17:15:07 Our convention is for the first line to *not* be a
Chris Bracken 2013/08/14 17:45:31 Done.
Chris Bracken 2013/08/14 17:45:31 Done.
+ *
+ * The integer implementations in this library are guaranteed to behave
+ * identically whether executed on the Dart VM or compiled to JavaScript.
+ *
+ * ## Installing ##
justinfagnani 2013/08/14 17:06:51 Do most libraries include pub install directions i
Kathy Walrath 2013/08/14 17:15:07 Why is there a ## after this header?
Chris Bracken 2013/08/14 17:45:31 I modelled these off the intl package. I agree tho
Chris Bracken 2013/08/14 17:45:31 Done.
+ *
+ * Use [pub][] to install this package. Add the following to your `pubspec.yaml`
Kathy Walrath 2013/08/14 17:15:07 I'm not used to this style of linking. Is there a
Chris Bracken 2013/08/14 17:45:31 Done.
+ * file.
Kathy Walrath 2013/08/14 17:15:07 file. -> file:
Chris Bracken 2013/08/14 17:45:31 Done.
+ *
+ * dependencies:
+ * fixnum: any
+ *
+ * Then run `pub install`.
+ *
+ * For more information, see the
+ * [fixnum package on pub.dartlang.org]
+ * (http://pub.dartlang.org/packages/fixnum).
+ *
+ * [pub]: http://pub.dartlang.org
+ */
library fixnum;
part 'src/intx.dart';
« no previous file with comments | « no previous file | pkg/fixnum/lib/src/intx.dart » ('j') | pkg/fixnum/lib/src/intx.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698