(&self, other: &V128)
| 70 | |
| 71 | impl Ord for V128 { |
| 72 | fn cmp(&self, other: &V128) -> Ordering { |
| 73 | self.as_u128().cmp(&other.as_u128()) |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | // Note that this trait is conditionally implemented which is intentional. See |
no test coverage detected