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

Unified Diff: sdk/lib/core/sequences.dart

Issue 11412086: Make 'where' lazy. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/core/sequences.dart
diff --git a/sdk/lib/core/sequences.dart b/sdk/lib/core/sequences.dart
index a98fa8dd19838c3c570515a0822ed2bf348557b6..b20f673acb03d13329c6e5fbc0f1528664bba3bb 100644
--- a/sdk/lib/core/sequences.dart
+++ b/sdk/lib/core/sequences.dart
@@ -56,14 +56,7 @@ abstract class SequenceCollection<E> implements Collection<E>, Sequence<E> {
return value;
}
- Collection<E> where(bool f(E element)) {
- List<E> result = <E>[];
- for (int i = 0; i < this.length; i++) {
- E element = this[i];
- if (f(element)) result.add(element);
- }
- return result;
- }
+ Iterable<E> where(bool f(E element)) => new FilteredIterable<E>(this, f);
bool every(bool f(E element)) {
for (int i = 0; i < this.length; i++) {

Powered by Google App Engine
This is Rietveld 408576698