//! Limb bit not operations. use super::Limb; use core::ops::Not; impl Limb { /// Calculates `!a`. pub const fn not(self) -> Self { Limb(!self.0) } } impl Not for Limb { type Output = Limb; fn not(self) -> ::Output { self.not() } }