combineIterables<T> function
Implementation
List<T> combineIterables<T>(
Iterable<T> i1, Iterable<T> i2, Combiner<T> combiner) {
return combineLists(
i1.toList(growable: false), i2.toList(growable: false), combiner);
}
List<T> combineIterables<T>(
Iterable<T> i1, Iterable<T> i2, Combiner<T> combiner) {
return combineLists(
i1.toList(growable: false), i2.toList(growable: false), combiner);
}