| 44 | /// Newtype wrapper for `f32` whose `PartialEq` impl considers NaNs equal to each other. |
| 45 | #[derive(Copy, Clone, Debug, Arbitrary)] |
| 46 | pub struct Float32(pub f32); |
| 47 | |
| 48 | /// Newtype wrapper for `f64` whose `PartialEq` impl considers NaNs equal to each other. |
| 49 | #[derive(Copy, Clone, Debug, Arbitrary)] |
no outgoing calls