(self, *args, **kwargs)
| 870 | return super().__lt__(other).view(np.ndarray) |
| 871 | |
| 872 | def all(self, *args, **kwargs): |
| 873 | raise NotImplementedError |
| 874 | |
| 875 | a = np.array([1., 2.]).view(MyArray) |
| 876 | self._assert_func(a, a) |
no outgoing calls
no test coverage detected