(x: &A, y: &A)
| 28 | } |
| 29 | |
| 30 | pub fn cmp<A: Ord>(x: &A, y: &A) -> Self { |
| 31 | SOrd { strong: true, ordering: x.cmp(y) } |
| 32 | } |
| 33 | pub fn weak_cmp<A: Ord>(x: &A, y: &A) -> Self { |
| 34 | SOrd { strong: false, ordering: x.cmp(y) } |
| 35 | } |
no outgoing calls
no test coverage detected