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

Unified Diff: packages/quiver/lib/src/iterables/range.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/partition.dart ('k') | packages/quiver/lib/src/iterables/zip.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/src/iterables/range.dart
diff --git a/packages/quiver/lib/src/iterables/range.dart b/packages/quiver/lib/src/iterables/range.dart
index c707748f2e2a1556779f07a87358936019748677..1f3baa96bd21fd372e1f8a4f052cdf4a3b381f67 100644
--- a/packages/quiver/lib/src/iterables/range.dart
+++ b/packages/quiver/lib/src/iterables/range.dart
@@ -14,18 +14,17 @@
part of quiver.iterables;
-/**
- * Returns an [Iterable] sequence of [num]s.
- *
- * If only one argument is provided, [start_or_stop] is the upper bound for the
- * sequence. If two or more arguments are provided, [stop] is the upper bound.
- *
- * The sequence starts at 0 if one argument is provided, or [start_or_stop] if
- * two or more arguments are provided. The sequence increments by 1, or [step]
- * if provided. [step] can be negative, in which case the sequence counts down
- * from the starting point and [stop] must be less than the starting point so
- * that it becomes the lower bound.
- */
+/// Returns an [Iterable] sequence of [num]s.
+///
+/// If only one argument is provided, [start_or_stop] is the upper bound for
+/// the sequence. If two or more arguments are provided, [stop] is the upper
+/// bound.
+///
+/// The sequence starts at 0 if one argument is provided, or [start_or_stop] if
+/// two or more arguments are provided. The sequence increments by 1, or [step]
+/// if provided. [step] can be negative, in which case the sequence counts down
+/// from the starting point and [stop] must be less than the starting point so
+/// that it becomes the lower bound.
Iterable<num> range(num start_or_stop, [num stop, num step]) =>
new _Range(start_or_stop, stop, step);
« no previous file with comments | « packages/quiver/lib/src/iterables/partition.dart ('k') | packages/quiver/lib/src/iterables/zip.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698