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

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

Issue 23567044: Add collection-helpers library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changing ~/ 2 to >> 1. Created 7 years, 2 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
Index: pkg/collection_helpers/lib/all.dart
diff --git a/pkg/collection_helpers/lib/all.dart b/pkg/collection_helpers/lib/all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..66571e9a3abeb5accde5ffc04af90e42f091ec88
--- /dev/null
+++ b/pkg/collection_helpers/lib/all.dart
@@ -0,0 +1,18 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+/**
+ * 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.
+ */
+library dart.collection_helper;
+
+export "algorithms.dart";
+export "wrappers.dart";
+export "equality.dart";

Powered by Google App Engine
This is Rietveld 408576698