Frank González Fernández
Results
2
comments of
Frank González Fernández
@teeterc We can create balanced groups using `Math.sqrt`. It works for 10000 items or less. ``` val groupSize = Math.max(Math.sqrt(seq.size).toInt, 1) query.filter { row => seq .grouped(groupSize) .map( _.map {...
There is an open discussion and solution [here](https://github.com/angular/components/issues/28905)