(&self, other: &Self)
| 70 | impl Eq for RawFloat {} |
| 71 | impl Ord for RawFloat { |
| 72 | fn cmp(&self, other: &Self) -> core::cmp::Ordering { self.0.to_bits().cmp(&other.0.to_bits()) } |
| 73 | } |
| 74 | impl PartialOrd for RawFloat { |
| 75 | fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { Some(self.cmp(other)) } |
no outgoing calls
no test coverage detected