(fn)
| 16817 | return this.getSubparticles().find(fn) |
| 16818 | } |
| 16819 | findLast(fn) { |
| 16820 | return this.getSubparticles().reverse().find(fn) |
| 16821 | } |
| 16822 | every(fn) { |
| 16823 | let index = 0 |
| 16824 | for (let particle of this.getTopDownArrayIterator()) { |
no test coverage detected