| 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> {
|
|
|