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

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

Issue 110483006: Add priority queue to package:collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Improve test layout/comments. Created 6 years, 11 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 | « pkg/collection/README.md ('k') | pkg/collection/lib/priority_queue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/collection/lib/collection.dart
diff --git a/pkg/collection/lib/collection.dart b/pkg/collection/lib/collection.dart
index a6f192d8057e622eaf945f3e53fe12176ae51cae..d640071630f6d47c782ef4da53caa3a8ab45cd34 100644
--- a/pkg/collection/lib/collection.dart
+++ b/pkg/collection/lib/collection.dart
@@ -11,6 +11,7 @@
* and various sorting algorithms).
* - `equality.dart`: Different notions of equality of collections.
* - `iterable_zip.dart`: Combining multiple iterables into one.
+ * - `priority_queue.dart`: Priority queue type and implementations.
* - `wrappers.dart`: Wrapper classes that delegate to a collection object.
* Includes unmodifiable views of collections.
*/
@@ -19,4 +20,5 @@ library dart.pkg.collection;
export "algorithms.dart";
export "equality.dart";
export "iterable_zip.dart";
+export "priority_queue.dart";
export "wrappers.dart";
« no previous file with comments | « pkg/collection/README.md ('k') | pkg/collection/lib/priority_queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698