OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of dart.collection; | 5 part of dart.collection; |
6 | 6 |
7 /** | 7 /** |
8 * A hash-table based implementation of [Map]. | 8 * A hash-table based implementation of [Map]. |
9 * | 9 * |
10 * Keys insertion order is remembered, and keys are iterated in insertion order. | 10 * Keys insertion order is remembered, and keys are iterated in insertion order. |
11 * Values are iterated in their corresponding key's order. | 11 * Values are iterated in their corresponding key's order. |
12 * | 12 * |
13 * The keys of a `LinkedHashMap` must have consistent [Object.operator==] | 13 * The keys of a `LinkedHashMap` must have consistent [Object.operator==] |
14 * and [Object.hashCode] implementations. This means that the `==` operator | 14 * and [Object.hashCode] implementations. This means that the `==` operator |
15 * must define a stable equivalence relation on the keys (reflexive, | 15 * must define a stable equivalence relation on the keys (reflexive, |
16 * anti-symmetric, transitive, and consistent over time), and that `hashCode` | 16 * anti-symmetric, transitive, and consistent over time), and that `hashCode` |
17 * must be the same for objects that are considered equal by `==`. | 17 * must be the same for objects that are considered equal by `==`. |
18 * | 18 * |
19 * The map allows `null` as a key. | 19 * The map allows `null` as a key. |
20 */ | 20 */ |
21 abstract class LinkedHashMap<K, V> implements HashMap<K, V> { | 21 class LinkedHashMap<K, V> implements HashMap<K, V> { |
22 external factory LinkedHashMap({ bool equals(K key1, K key2), | 22 external LinkedHashMap(); |
23 int hashCode(K key), | |
24 bool isValidKey(potentialKey) }); | |
25 | 23 |
26 /** | 24 /** |
27 * Creates a [LinkedHashMap] that contains all key value pairs of [other]. | 25 * Creates a [LinkedHashMap] that contains all key value pairs of [other]. |
28 */ | 26 */ |
29 factory LinkedHashMap.from(Map<K, V> other) { | 27 factory LinkedHashMap.from(Map<K, V> other) { |
30 return new LinkedHashMap<K, V>()..addAll(other); | 28 return new LinkedHashMap<K, V>()..addAll(other); |
31 } | 29 } |
32 | 30 |
33 /** | 31 /** |
34 * Creates a [LinkedHashMap] where the keys and values are computed from the | 32 * Creates a [LinkedHashMap] where the keys and values are computed from the |
(...skipping 24 matching lines...) Expand all Loading... |
59 * If [keys] contains the same object multiple times, the last occurrence | 57 * If [keys] contains the same object multiple times, the last occurrence |
60 * overwrites the previous value. | 58 * overwrites the previous value. |
61 * | 59 * |
62 * It is an error if the two [Iterable]s don't have the same length. | 60 * It is an error if the two [Iterable]s don't have the same length. |
63 */ | 61 */ |
64 factory LinkedHashMap.fromIterables(Iterable<K> keys, Iterable<V> values) { | 62 factory LinkedHashMap.fromIterables(Iterable<K> keys, Iterable<V> values) { |
65 LinkedHashMap<K, V> map = new LinkedHashMap<K, V>(); | 63 LinkedHashMap<K, V> map = new LinkedHashMap<K, V>(); |
66 Maps._fillMapWithIterables(map, keys, values); | 64 Maps._fillMapWithIterables(map, keys, values); |
67 return map; | 65 return map; |
68 } | 66 } |
| 67 |
| 68 external bool containsKey(Object key); |
| 69 |
| 70 external bool containsValue(Object value); |
| 71 |
| 72 external void addAll(Map<K, V> other); |
| 73 |
| 74 external V operator [](Object key); |
| 75 |
| 76 external void operator []=(K key, V value); |
| 77 |
| 78 external V putIfAbsent(K key, V ifAbsent()); |
| 79 |
| 80 external V remove(Object key); |
| 81 |
| 82 external void clear(); |
| 83 |
| 84 external void forEach(void action (K key, V value)); |
| 85 |
| 86 /** The keys of the map, in insertion order. */ |
| 87 external Iterable<K> get keys; |
| 88 /** The values of the map, in the order of their corresponding [keys].*/ |
| 89 external Iterable<V> get values; |
| 90 |
| 91 external int get length; |
| 92 |
| 93 external bool get isEmpty; |
| 94 |
| 95 external bool get isNotEmpty; |
| 96 |
| 97 String toString() => Maps.mapToString(this); |
69 } | 98 } |
OLD | NEW |