Procházet zdrojové kódy

Add LowerHex and UpperHex formatting

Colin Davidson před 9 roky
rodič
revize
80c4d01b7f
1 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. 12 0
      src/bigint.rs

+ 12 - 0
src/bigint.rs

@@ -242,6 +242,18 @@ impl fmt::Display for BigUint {
     }
 }
 
+impl fmt::LowerHex for BigUint {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "{}", self.to_str_radix(16))
+    }
+}
+
+impl fmt::UpperHex for BigUint {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "{}", self.to_str_radix(16).to_uppercase())
+    }
+}
+
 impl FromStr for BigUint {
     type Err = ParseBigIntError;