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

Side by Side Diff: sdk/lib/async/future.dart

Issue 11820024: Enable "part of" for the async library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/async/async_sources.gypi ('k') | sdk/lib/async/future_impl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.async; 5 part of dart.async;
6 6
7 /** 7 /**
8 * A [Future] is used to obtain a value sometime in the future. Receivers of a 8 * A [Future] is used to obtain a value sometime in the future. Receivers of a
9 * [Future] can obtain the value by passing a callback to [then]. For example: 9 * [Future] can obtain the value by passing a callback to [then]. For example:
10 * 10 *
11 * Future<int> future = getFutureFromSomewhere(); 11 * Future<int> future = getFutureFromSomewhere();
12 * future.then((value) { 12 * future.then((value) {
13 * print("I received the number $value"); 13 * print("I received the number $value");
14 * }); 14 * });
15 * 15 *
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 */ 185 */
186 static Future forEach(Iterable input, Future f(element)) { 186 static Future forEach(Iterable input, Future f(element)) {
187 var iterator = input.iterator; 187 var iterator = input.iterator;
188 Future nextElement(_) { 188 Future nextElement(_) {
189 if (!iterator.moveNext()) return new Future.immediate(null); 189 if (!iterator.moveNext()) return new Future.immediate(null);
190 return f(iterator.current).then(nextElement); 190 return f(iterator.current).then(nextElement);
191 } 191 }
192 return nextElement(null); 192 return nextElement(null);
193 } 193 }
194 } 194 }
OLDNEW
« no previous file with comments | « sdk/lib/async/async_sources.gypi ('k') | sdk/lib/async/future_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698