| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 * Base class for implementing a [Map]. | 8 * Base class for implementing a [Map]. |
| 9 * | 9 * |
| 10 * This class has a basic implementation of all but five of the members of | 10 * This class has a basic implementation of all but five of the members of |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 abstract class UnmodifiableMapBase<K, V> = | 104 abstract class UnmodifiableMapBase<K, V> = |
| 105 MapBase<K, V> with _UnmodifiableMapMixin<K, V>; | 105 MapBase<K, V> with _UnmodifiableMapMixin<K, V>; |
| 106 | 106 |
| 107 /** | 107 /** |
| 108 * Implementation of [Map.values] based on the map and its [Map.keys] iterable. | 108 * Implementation of [Map.values] based on the map and its [Map.keys] iterable. |
| 109 * | 109 * |
| 110 * Iterable that iterates over the values of a `Map`. | 110 * Iterable that iterates over the values of a `Map`. |
| 111 * It accesses the values by iterating over the keys of the map, and using the | 111 * It accesses the values by iterating over the keys of the map, and using the |
| 112 * map's `operator[]` to lookup the keys. | 112 * map's `operator[]` to lookup the keys. |
| 113 */ | 113 */ |
| 114 class _MapBaseValueIterable<K, V> extends EfficientLengthIterable<V> { | 114 class _MapBaseValueIterable<K, V> extends Iterable<V> |
| 115 implements EfficientLength { |
| 115 final Map<K, V> _map; | 116 final Map<K, V> _map; |
| 116 _MapBaseValueIterable(this._map); | 117 _MapBaseValueIterable(this._map); |
| 117 | 118 |
| 118 int get length => _map.length; | 119 int get length => _map.length; |
| 119 bool get isEmpty => _map.isEmpty; | 120 bool get isEmpty => _map.isEmpty; |
| 120 bool get isNotEmpty => _map.isNotEmpty; | 121 bool get isNotEmpty => _map.isNotEmpty; |
| 121 V get first => _map[_map.keys.first]; | 122 V get first => _map[_map.keys.first]; |
| 122 V get single => _map[_map.keys.single]; | 123 V get single => _map[_map.keys.single]; |
| 123 V get last => _map[_map.keys.last]; | 124 V get last => _map[_map.keys.last]; |
| 124 | 125 |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 map[keyIterator.current] = valueIterator.current; | 346 map[keyIterator.current] = valueIterator.current; |
| 346 hasNextKey = keyIterator.moveNext(); | 347 hasNextKey = keyIterator.moveNext(); |
| 347 hasNextValue = valueIterator.moveNext(); | 348 hasNextValue = valueIterator.moveNext(); |
| 348 } | 349 } |
| 349 | 350 |
| 350 if (hasNextKey || hasNextValue) { | 351 if (hasNextKey || hasNextValue) { |
| 351 throw new ArgumentError("Iterables do not have same length."); | 352 throw new ArgumentError("Iterables do not have same length."); |
| 352 } | 353 } |
| 353 } | 354 } |
| 354 } | 355 } |
| OLD | NEW |