(self, *args, **kwargs)
| 632 | return super().__lt__(other).view(np.ndarray) |
| 633 | |
| 634 | def all(self, *args, **kwargs): |
| 635 | raise NotImplementedError |
| 636 | |
| 637 | a = np.array([1., 2.]).view(MyArray) |
| 638 | self._assert_func(a, a) |
no outgoing calls
no test coverage detected