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

Unified Diff: pkg/collection_helpers/lib/all.dart

Issue 26695002: Growable typed data buffers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Works on dart2js, as well as possible. Created 7 years, 1 month 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
Index: pkg/collection_helpers/lib/all.dart
diff --git a/pkg/collection_helpers/lib/all.dart b/pkg/collection_helpers/lib/all.dart
index 66571e9a3abeb5accde5ffc04af90e42f091ec88..7474bf29bb967ad787829dbce1d8de0755798f06 100644
--- a/pkg/collection_helpers/lib/all.dart
+++ b/pkg/collection_helpers/lib/all.dart
@@ -6,13 +6,16 @@
* Exports all the individual parts of the collection-helper library.
*
* The sub-libraries of this package are:
+ *
* - `algorithms.dart`: Algorithms that work on lists (shuffle, binary search
* and various sorting algorithms).
* - `wrappers.dart`: Wrapper classes that delegate to a collection object.
* - `equality.dart`: Different notions of equality of collections.
+ * - `typed_bufers.dart`: Growable typed data lists.
floitsch 2013/11/18 18:03:40 typed_buffers.dart
Lasse Reichstein Nielsen 2013/11/19 10:31:24 Fixed.
*/
library dart.collection_helper;
export "algorithms.dart";
+export "equality.dart";
+export "typed_buffers.dart";
export "wrappers.dart";
-export "equality.dart";
« no previous file with comments | « no previous file | pkg/collection_helpers/lib/typed_buffers.dart » ('j') | pkg/collection_helpers/lib/typed_buffers.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698