fromIterable function

List<List<double>> fromIterable(
  1. List<Iterable<double>> input
)

Implementation

List<List<double>> fromIterable(List<Iterable<double>> input) {
  List<List<double>> output = [];

  for (var element in input) {
    output.add(element.toList());
  }

  return output;
}