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

Unified Diff: packages/quiver/lib/src/iterables/zip.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/range.dart ('k') | packages/quiver/lib/src/pattern/glob.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/src/iterables/zip.dart
diff --git a/packages/quiver/lib/src/iterables/zip.dart b/packages/quiver/lib/src/iterables/zip.dart
index 69d397e35be29d3fe16c1c2ebb71de526a911728..2d17d87f9e6784c67f68c670b965a5e8f35861d8 100644
--- a/packages/quiver/lib/src/iterables/zip.dart
+++ b/packages/quiver/lib/src/iterables/zip.dart
@@ -14,12 +14,10 @@
part of quiver.iterables;
-/**
- * Returns an [Iterable] of [List]s where the nth element in the returned
- * iterable contains the nth element from every Iterable in [iterables]. The
- * returned Iterable is as long as the shortest Iterable in the argument. If
- * [iterables] is empty, it returns an empty list.
- */
+/// Returns an [Iterable] of [List]s where the nth element in the returned
+/// iterable contains the nth element from every Iterable in [iterables]. The
+/// returned Iterable is as long as the shortest Iterable in the argument. If
+/// [iterables] is empty, it returns an empty list.
Iterable<List> zip(Iterable<Iterable> iterables) =>
(iterables.isEmpty) ? const [] : new _Zip(iterables);
« no previous file with comments | « packages/quiver/lib/src/iterables/range.dart ('k') | packages/quiver/lib/src/pattern/glob.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698