Function negate [src]
Prototype
pub fn negate(self: Const) Const
Parameters
self: Const
Source
pub fn negate(self: Const) Const {
return .{
.limbs = self.limbs,
.positive = !self.positive,
};
}
pub fn negate(self: Const) Const
self: Const
pub fn negate(self: Const) Const {
return .{
.limbs = self.limbs,
.positive = !self.positive,
};
}