| 48 | /// Newtype wrapper for `f64` whose `PartialEq` impl considers NaNs equal to each other. |
| 49 | #[derive(Copy, Clone, Debug, Arbitrary)] |
| 50 | pub struct Float64(pub f64); |
| 51 | |
| 52 | macro_rules! forward_impls { |
| 53 | ($($a:ty => $b:ty,)*) => ($( |
no outgoing calls