(func)
| 80 | def _override_numpy(numpy_function): |
| 81 | """Register an __array_function__ implementation for VTKCompositeDataArray objects.""" |
| 82 | def decorator(func): |
| 83 | COMPOSITE_OVERRIDE[numpy_function] = func |
| 84 | return func |
| 85 | return decorator |
| 86 | |
| 87 | def reshape_append_ones (a1, a2): |