(self, a, m, M, out=None, **kwargs)
| 2326 | nc = 3 |
| 2327 | |
| 2328 | def fastclip(self, a, m, M, out=None, **kwargs): |
| 2329 | return a.clip(m, M, out=out, **kwargs) |
| 2330 | |
| 2331 | def clip(self, a, m, M, out=None): |
| 2332 | # use a.choose to verify fastclip result |
no test coverage detected