| Index: packages/quiver/lib/src/iterables/concat.dart
|
| diff --git a/packages/quiver/lib/src/iterables/concat.dart b/packages/quiver/lib/src/iterables/concat.dart
|
| index b4ab751adb549fe9debce9535a0f780233f14472..66d99c8ee8a37db865f99301d532dd1c5ef41163 100644
|
| --- a/packages/quiver/lib/src/iterables/concat.dart
|
| +++ b/packages/quiver/lib/src/iterables/concat.dart
|
| @@ -14,9 +14,8 @@
|
|
|
| part of quiver.iterables;
|
|
|
| -/**
|
| - * Returns the concatentation of the input iterables.
|
| - *
|
| - * The returned iterable is a lazily-evaluated view on the input iterables.
|
| - */
|
| -Iterable concat(Iterable<Iterable> iterables) => iterables.expand((x) => x);
|
| +/// Returns the concatentation of the input iterables.
|
| +///
|
| +/// The returned iterable is a lazily-evaluated view on the input iterables.
|
| +Iterable<T>
|
| + concat<T>(Iterable<Iterable<T>> iterables) => iterables.expand((x) => x);
|
|
|