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

Unified Diff: packages/quiver_iterables/lib/src/cycle.dart

Issue 2119523002: Added full js & js_util packages (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 4 years, 6 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_iterables/lib/src/count.dart ('k') | packages/quiver_iterables/lib/src/enumerate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver_iterables/lib/src/cycle.dart
diff --git a/packages/quiver/lib/src/iterables/cycle.dart b/packages/quiver_iterables/lib/src/cycle.dart
similarity index 89%
copy from packages/quiver/lib/src/iterables/cycle.dart
copy to packages/quiver_iterables/lib/src/cycle.dart
index 5cf3b12918c8e6916f20f538069c65245f316a96..7f1614d97fc14a1b074e8824ed730a834bcbe235 100644
--- a/packages/quiver/lib/src/iterables/cycle.dart
+++ b/packages/quiver_iterables/lib/src/cycle.dart
@@ -14,10 +14,8 @@
part of quiver.iterables;
-/**
- * Returns an [Iterable] that infinitely cycles through the elements of
- * [iterable]. If [iterable] is empty, the returned Iterable will also be empty.
- */
+/// Returns an [Iterable] that infinitely cycles through the elements of
+/// [iterable]. If [iterable] is empty, the returned Iterable will also be empty.
Iterable cycle(Iterable iterable) => new _Cycle(iterable);
class _Cycle<T> extends InfiniteIterable<T> {
« no previous file with comments | « packages/quiver_iterables/lib/src/count.dart ('k') | packages/quiver_iterables/lib/src/enumerate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698