(arrays, shape)
| 5623 | |
| 5624 | |
| 5625 | def concatenate_shaped(arrays, shape): |
| 5626 | shaped = reshapelist(shape, arrays) |
| 5627 | return concatenate3(shaped) |
| 5628 | |
| 5629 | |
| 5630 | def concatenate3(arrays): |
nothing calls this directly
no test coverage detected
searching dependent graphs…