]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_middle/src/ty/consts/int.rs
Rollup merge of #104895 - chenyukang:yukang/fix-104884-serde, r=TaKO8Ki
[rust.git] / compiler / rustc_middle / src / ty / consts / int.rs
index 7436f0f6f4d33928731324b9bf35ddcab5f96e22..f3186e1c30c3dc4b4229f8501ac5e91d33131edd 100644 (file)
@@ -245,6 +245,18 @@ pub fn try_to_uint(self, size: Size) -> Result<u128, Size> {
         self.to_bits(size)
     }
 
+    // Tries to convert the `ScalarInt` to `bool`. Fails if the `size` of the `ScalarInt`
+    // in not equal to `Size { raw: 1 }` or if the value is not 0 or 1 and returns the `size`
+    // value of the `ScalarInt` in that case.
+    #[inline]
+    pub fn try_to_bool(self) -> Result<bool, Size> {
+        match self.try_to_u8()? {
+            0 => Ok(false),
+            1 => Ok(true),
+            _ => Err(self.size()),
+        }
+    }
+
     // Tries to convert the `ScalarInt` to `u8`. Fails if the `size` of the `ScalarInt`
     // in not equal to `Size { raw: 1 }` and returns the `size` value of the `ScalarInt` in
     // that case.