(&self)
| 310 | /// Fast decimal string conversion, using i64 path when possible. |
| 311 | #[inline] |
| 312 | pub fn to_str_radix_10(&self) -> String { |
| 313 | match self.value.to_i64() { |
| 314 | Some(i) => i.to_string(), |
| 315 | None => self.value.to_string(), |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | // _PyLong_AsUnsignedLongMask |
| 320 | pub fn as_u32_mask(&self) -> u32 { |