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

Unified Diff: sdk/lib/core/map.dart

Issue 1127533002: Add Map.unmodifiable constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments, update documentation. Created 5 years, 7 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 | « sdk/lib/_internal/compiler/js_lib/core_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/map.dart
diff --git a/sdk/lib/core/map.dart b/sdk/lib/core/map.dart
index c011a2044a5ade009120ebda2ec5379815b91210..d19d1089c1623ebf43704012fba7b5baaa205a05 100644
--- a/sdk/lib/core/map.dart
+++ b/sdk/lib/core/map.dart
@@ -45,12 +45,28 @@ abstract class Map<K, V> {
* The [other] map itself can have any type.
*
* A `LinkedHashMap` requires the keys to implement compatible
- * `operator==` and `hashCode`, and it allows null as a key.
+ * `operator==` and `hashCode`, and it allows `null` as a key.
* It iterates in key insertion order.
*/
factory Map.from(Map other) = LinkedHashMap<K, V>.from;
/**
+ * Creates an unmodifiable hash based map containing the entries of [other].
+ *
+ * The keys must all be assignable to [K] and the values to [V].
+ * The [other] map itself can have any type.
+ *
+ * The map requires the keys to implement compatible
+ * `operator==` and `hashCode`, and it allows `null` as a key.
+ * The created map iterates keys in a fixed order,
+ * preserving the order provided by [other].
+ *
+ * The resulting map behaves like the result of [Map.from],
+ * except that the map returned by this constructor is not modifiable.
+ */
+ external factory Map.unmodifiable(Map other);
+
+ /**
* Creates an identity map with the default implementation, [LinkedHashMap].
*
* The returned map allows `null` as a key.
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/core_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698