We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BigInt
BigUint
Hash
Something along the lines of
impl<H: std::hash::Writer> std::hash::Hash<H> for BigInt { #[inline] fn hash(&self, hasher: &mut H) { self.data.as_slice().hash(hasher) } }
should work.