Return self negated.
(self)
| 67 | |
| 68 | /// Return self negated. |
| 69 | pub fn wrapping_neg(self) -> Self { |
| 70 | Self(self.0.wrapping_neg()) |
| 71 | } |
| 72 | |
| 73 | /// Returns the value of this immediate. |
| 74 | pub fn bits(&self) -> i64 { |
no outgoing calls
no test coverage detected