Chromium Code Reviews| Index: sdk/lib/collection/linked_hash_map.dart |
| diff --git a/sdk/lib/collection/linked_hash_map.dart b/sdk/lib/collection/linked_hash_map.dart |
| index d41cb408b2e45d94b5bcf4ce5ff00561a9bf5ad9..6eb0894445e92f660e7289847dfc012b64d72452 100644 |
| --- a/sdk/lib/collection/linked_hash_map.dart |
| +++ b/sdk/lib/collection/linked_hash_map.dart |
| @@ -5,7 +5,18 @@ |
| part of dart.collection; |
| /** |
| - * A hash-based map that iterates keys and values in key insertion order. |
| + * A hash-table based implementation of [Map]. |
| + * |
| + * Keys insertion order is remembered, and keys are iterated in insertion order. |
| + * Values are iterated in their corresponding key's order. |
| + * |
| + * The keys of a `HashMap` must have consistent [Object.operator==] |
| + * and [Object.hashCode] implementations. This means that the `==` operator |
| + * must define a stable equivalence relation on the keys (reflexive, |
| + * anti-symmetric, trasitive, and consistent over time), and that `hashCode` |
|
ngeoffray
2013/06/04 11:51:33
trasitive -> transitive
|
| + * must be the same for objects that are considered equal by `==`. |
| + * |
| + * The map allows `null` as an key. |
|
ngeoffray
2013/06/04 11:51:33
an -> a
|
| */ |
| class LinkedHashMap<K, V> implements Map<K, V> { |
| external LinkedHashMap(); |
| @@ -32,7 +43,9 @@ class LinkedHashMap<K, V> implements Map<K, V> { |
| external void forEach(void action (K key, V value)); |
| + /** The keys of the map, in insertion order. */ |
| external Iterable<K> get keys; |
| + /** The values of the map, in the order of their corresponding [keys].*/ |
| external Iterable<V> get values; |
| external int get length; |