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

Side by Side Diff: sdk/lib/html/src/_Collections.dart

Issue 11410086: Use iterator, moveNext(), current. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Address comments. Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 html; 5 part of html;
6 6
7 /** 7 /**
8 * The [Collections] class implements static methods useful when 8 * The [Collections] class implements static methods useful when
9 * writing a class that implements [Collection] and the [iterator] 9 * writing a class that implements [Collection] and the [iterator]
10 * method. 10 * method.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 static List where(Iterable<Object> source, 49 static List where(Iterable<Object> source,
50 List<Object> destination, 50 List<Object> destination,
51 bool f(o)) { 51 bool f(o)) {
52 for (final e in source) { 52 for (final e in source) {
53 if (f(e)) destination.add(e); 53 if (f(e)) destination.add(e);
54 } 54 }
55 return destination; 55 return destination;
56 } 56 }
57 57
58 static bool isEmpty(Iterable<Object> iterable) { 58 static bool isEmpty(Iterable<Object> iterable) {
59 return !iterable.iterator().hasNext; 59 return !iterable.iterator.moveNext();
60 } 60 }
61 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698