Reverse negation on ordering

Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>
This commit is contained in:
Jake Howard 2021-03-28 10:49:29 +01:00 committed by GitHub
parent da55d5ec70
commit 0bf0125e82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,11 +90,11 @@ impl PartialOrd<i32> for UserOrgType {
}
fn gt(&self, other: &i32) -> bool {
!matches!(self.partial_cmp(other), Some(Ordering::Less) | Some(Ordering::Equal))
matches!(self.partial_cmp(other), Some(Ordering::Greater))
}
fn ge(&self, other: &i32) -> bool {
!matches!(self.partial_cmp(other), Some(Ordering::Less))
matches!(self.partial_cmp(other), Some(Ordering::Greater) | Some(Ordering::Equal))
}
}