(arrays)
| 525 | # Ultimately, this should be removed if a single algorithm is found |
| 526 | # to be faster for both small and large arrays. |
| 527 | def _block_force_concatenate(arrays): |
| 528 | arrays, list_ndim, result_ndim, _ = _block_setup(arrays) |
| 529 | return _block_concatenate(arrays, list_ndim, result_ndim) |
| 530 | |
| 531 | def _block_force_slicing(arrays): |
| 532 | arrays, list_ndim, result_ndim, _ = _block_setup(arrays) |
nothing calls this directly
no test coverage detected