(self, *axes)
| 396 | return self.tensor.__contains__(x) |
| 397 | |
| 398 | def transpose(self, *axes): |
| 399 | # np.transpose(arr, axis=None) but arr.transpose(*axes) |
| 400 | return _funcs.transpose(self, axes) |
| 401 | |
| 402 | def reshape(self, *shape, order="C"): |
| 403 | # arr.reshape(shape) and arr.reshape(*shape) |
no outgoing calls