(&mut self)
| 87 | self.next() % 1_000_000_000 |
| 88 | } |
| 89 | fn i32_small(&mut self) -> i32 { |
| 90 | (self.next() % 512) as i32 - 256 |
| 91 | } |
| 92 | /// Finite f64 only — serde_json renders NaN/Inf as `null`, which would |
| 93 | /// not round-trip. We deliberately stay in the finite range so the |
| 94 | /// stability property holds. |
no test coverage detected