combineIterables<T> function

List<T> combineIterables<T>(
  1. Iterable<T> i1,
  2. Iterable<T> i2,
  3. Combiner<T> combiner
)

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);
}