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

Unified Diff: sdk/lib/collection/maps.dart

Issue 1104063002: Make EfficientLength public, as EfficientLengthIterable. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. 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
Index: sdk/lib/collection/maps.dart
diff --git a/sdk/lib/collection/maps.dart b/sdk/lib/collection/maps.dart
index 7945e7ea643411074c5e65769a5870c0733913c7..ecc2bf766181acf57e8c08db726fac0620efcf56 100644
--- a/sdk/lib/collection/maps.dart
+++ b/sdk/lib/collection/maps.dart
@@ -112,7 +112,7 @@ abstract class UnmodifiableMapBase<K, V> =
* map's `operator[]` to lookup the keys.
*/
class _MapBaseValueIterable<V> extends Iterable<V>
- implements EfficientLength {
+ implements EfficientLengthIterable<V> {
final Map _map;
_MapBaseValueIterable(this._map);

Powered by Google App Engine
This is Rietveld 408576698