(self)
| 88 | return -(self._int_max() + 1) |
| 89 | |
| 90 | def _true_mask(self): |
| 91 | max_unsig = getattr(self.npyv, "setall_u" + self.sfx[1:])(-1) |
| 92 | return max_unsig[0] |
| 93 | |
| 94 | def _to_unsigned(self, vector): |
| 95 | if isinstance(vector, (list, tuple)): |
no outgoing calls
no test coverage detected