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

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

Issue 70073003: Combine unmodifiable_collection package into collection_helpers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Remove references from other packages. 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
« no previous file with comments | « pkg/collection_helpers/lib/unmodifiable_wrappers.dart ('k') | pkg/collection_helpers/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/collection_helpers/lib/wrappers.dart
diff --git a/pkg/collection_helpers/lib/wrappers.dart b/pkg/collection_helpers/lib/wrappers.dart
index 36b9b033e13a2949ceee97e15838bd42915f8da7..6891eb49e6096299c0ea9994fff9a8426c987ca3 100644
--- a/pkg/collection_helpers/lib/wrappers.dart
+++ b/pkg/collection_helpers/lib/wrappers.dart
@@ -4,12 +4,20 @@
/**
* Delegating wrappers for [Iterable], [List], [Set], [Queue] and [Map].
+ *
+ * Also adds unmodifiable views for `Set` and `Map`, and a fixed length
+ * view for `List`. The unmodifable list view from `dart:collection` is exported
+ * as well, just for completeness.
*/
-library dart.collection_helper.wrappers;
+library dart.collection_helpers.wrappers;
import "dart:collection";
import "dart:math" show Random;
+export "dart:collection" show UnmodifiableListView;
+
+part "unmodifiable_wrappers.dart";
+
/**
* Creates an [Iterable] that delegates all operations to a base iterable.
*
« no previous file with comments | « pkg/collection_helpers/lib/unmodifiable_wrappers.dart ('k') | pkg/collection_helpers/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698