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

Unified Diff: packages/quiver/lib/async.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
« no previous file with comments | « packages/quiver/README.md ('k') | packages/quiver/lib/check.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/async.dart
diff --git a/packages/quiver/lib/async.dart b/packages/quiver/lib/async.dart
index 1cc8e126b3b3bce8da2c27f8f45831dda9dc84e7..e0daa87f1969c7691acf1ba05756544d41544526 100644
--- a/packages/quiver/lib/async.dart
+++ b/packages/quiver/lib/async.dart
@@ -16,33 +16,31 @@ library quiver.async;
import 'dart:async';
+import 'package:quiver/iterables.dart' show IndexedValue;
import 'package:quiver/time.dart';
+part 'src/async/collect.dart';
part 'src/async/countdown_timer.dart';
+part 'src/async/concat.dart';
+part 'src/async/enumerate.dart';
part 'src/async/future_group.dart';
part 'src/async/future_stream.dart';
part 'src/async/iteration.dart';
part 'src/async/metronome.dart';
+part 'src/async/stream_buffer.dart';
part 'src/async/stream_router.dart';
-/**
- * The signature of a one-shot [Timer] factory.
- */
+/// The signature of a one-shot [Timer] factory.
typedef Timer CreateTimer(Duration duration, void callback());
-/**
- * Creates a new one-shot [Timer] using `new Timer(duration, callback)`.
- */
+/// Creates a new one-shot [Timer] using `new Timer(duration, callback)`.
Timer createTimer(Duration duration, void callback()) =>
new Timer(duration, callback);
-/**
- * The signature of a periodic timer factory.
- */
+
+/// The signature of a periodic timer factory.
typedef Timer CreateTimerPeriodic(Duration duration, void callback(Timer));
-/**
- * Creates a new periodic [Timer] using
- * `new Timer.periodic(duration, callback)`.
- */
-Timer createTimerPeriodic(Duration duration, void callback(Timer)) =>
+/// Creates a new periodic [Timer] using
+/// `new Timer.periodic(duration, callback)`.
+Timer createTimerPeriodic(Duration duration, void callback(Timer t)) =>
new Timer.periodic(duration, callback);
« no previous file with comments | « packages/quiver/README.md ('k') | packages/quiver/lib/check.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698