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

Unified Diff: packages/quiver/lib/src/iterables/count.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/lib/src/iterables/concat.dart ('k') | packages/quiver/lib/src/iterables/cycle.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/src/iterables/count.dart
diff --git a/packages/quiver/lib/src/iterables/count.dart b/packages/quiver/lib/src/iterables/count.dart
index 66e949a0b6f3eda3f09907ea346b848165766946..87dbfea12b6ebfd5333dfe66e446c49ea9997766 100644
--- a/packages/quiver/lib/src/iterables/count.dart
+++ b/packages/quiver/lib/src/iterables/count.dart
@@ -14,10 +14,8 @@
part of quiver.iterables;
-/**
- * Returns an infinite [Iterable] of [num]s, starting from [start] and
- * increasing by [step].
- */
+/// Returns an infinite [Iterable] of [num]s, starting from [start] and
+/// increasing by [step].
Iterable<num> count([num start = 0, num step = 1]) => new _Count(start, step);
class _Count extends InfiniteIterable<num> {
« no previous file with comments | « packages/quiver/lib/src/iterables/concat.dart ('k') | packages/quiver/lib/src/iterables/cycle.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698