Lines Matching defs:BigUint
10 impl<'a, 'b> BitAnd<&'b BigUint> for &'a BigUint { implementation
14 fn bitand(self, other: &BigUint) -> BigUint { in bitand()
26 impl<'a> BitAnd<&'a BigUint> for BigUint { implementation
30 fn bitand(mut self, other: &BigUint) -> BigUint { in bitand()
35 impl<'a> BitAndAssign<&'a BigUint> for BigUint { implementation
37 fn bitand_assign(&mut self, other: &BigUint) { in bitand_assign()
49 impl<'a> BitOr<&'a BigUint> for BigUint { implementation
52 fn bitor(mut self, other: &BigUint) -> BigUint { in bitor()
57 impl<'a> BitOrAssign<&'a BigUint> for BigUint { implementation
59 fn bitor_assign(&mut self, other: &BigUint) { in bitor_assign()
73 impl<'a> BitXor<&'a BigUint> for BigUint { implementation
76 fn bitxor(mut self, other: &BigUint) -> BigUint { in bitxor()
81 impl<'a> BitXorAssign<&'a BigUint> for BigUint { implementation
83 fn bitxor_assign(&mut self, other: &BigUint) { in bitxor_assign()