(self)
| 81 | return max_u |
| 82 | |
| 83 | def _int_min(self): |
| 84 | if self._is_fp(): |
| 85 | return None |
| 86 | if self._is_unsigned(): |
| 87 | return 0 |
| 88 | return -(self._int_max() + 1) |
| 89 | |
| 90 | def _true_mask(self): |
| 91 | max_unsig = getattr(self.npyv, "setall_u" + self.sfx[1:])(-1) |
no test coverage detected