Skip to content

Commit

Permalink
[iterables] make concat a generic function
Browse files Browse the repository at this point in the history
  • Loading branch information
yjbanov committed Apr 11, 2016
1 parent a748d26 commit ef71430
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/iterables/concat.dart
Expand Up @@ -19,4 +19,5 @@ part of quiver.iterables;
*
* The returned iterable is a lazily-evaluated view on the input iterables.
*/
Iterable concat(Iterable<Iterable> iterables) => iterables.expand((x) => x);
Iterable/*<T>*/ concat/*<T>*/(Iterable<Iterable/*<T>*/> iterables) =>
iterables.expand((x) => x);

0 comments on commit ef71430

Please sign in to comment.