(self, a, m, M, out=None, **kwargs)
| 1837 | self.nc = 3 |
| 1838 | |
| 1839 | def fastclip(self, a, m, M, out=None, **kwargs): |
| 1840 | return a.clip(m, M, out=out, **kwargs) |
| 1841 | |
| 1842 | def clip(self, a, m, M, out=None): |
| 1843 | # use a.choose to verify fastclip result |
no test coverage detected