| Index: packages/quiver_iterables/lib/src/infinite_iterable.dart
|
| diff --git a/packages/quiver/lib/src/iterables/infinite_iterable.dart b/packages/quiver_iterables/lib/src/infinite_iterable.dart
|
| similarity index 91%
|
| copy from packages/quiver/lib/src/iterables/infinite_iterable.dart
|
| copy to packages/quiver_iterables/lib/src/infinite_iterable.dart
|
| index cfe0bd2cf21b65e7795f357b4689683dfed15cb8..69085ea90c3ee99fcefaa446416a27ac4ef4fe72 100644
|
| --- a/packages/quiver/lib/src/iterables/infinite_iterable.dart
|
| +++ b/packages/quiver_iterables/lib/src/infinite_iterable.dart
|
| @@ -14,10 +14,8 @@
|
|
|
| part of quiver.iterables;
|
|
|
| -/**
|
| - * A base class for [Iterable]s of infinite length that throws
|
| - * [UnsupportedError] for methods that would require the Iterable to terminate.
|
| - */
|
| +/// A base class for [Iterable]s of infinite length that throws
|
| +/// [UnsupportedError] for methods that would require the Iterable to terminate.
|
| abstract class InfiniteIterable<T> extends IterableBase<T> {
|
| bool get isEmpty => false;
|
|
|
|
|