Index: sdk/lib/core/map.dart |
diff --git a/sdk/lib/core/map.dart b/sdk/lib/core/map.dart |
index c011a2044a5ade009120ebda2ec5379815b91210..962cfe74ee3b8e8fbed3b57bb6555e949c5d7431 100644 |
--- a/sdk/lib/core/map.dart |
+++ b/sdk/lib/core/map.dart |
@@ -45,12 +45,27 @@ 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 the same order as [other]. |
Ivan Posva
2015/05/11 18:16:54
This is a strong statement to make. If other itera
Anders Johnsen
2015/05/11 18:51:08
From https://api.dartlang.org/apidocs/channels/sta
Lasse Reichstein Nielsen
2015/05/13 11:18:59
This can probably still be written a little better
|
+ * |
+ * The resulting map behaves like the result of [Map.from], |
+ * except that the map returned by this constructor diallows modification. |
sra1
2015/05/07 19:24:42
disallows
or
does not allow
or
is not modifiable.
Lasse Reichstein Nielsen
2015/05/13 11:18:59
Done.
|
+ */ |
+ external factory Map.unmodifiable(Map other); |
Søren Gjesse
2015/05/05 01:51:12
Is UnmodifiableMapView used that much that it warr
Lasse Reichstein Nielsen
2015/05/05 05:09:40
This constructor, like List.unmodifable, is intend
|
+ |
+ /** |
* Creates an identity map with the default implementation, [LinkedHashMap]. |
* |
* The returned map allows `null` as a key. |