rust/clippy_utils/src/comparisons.rs

37 lines
927 B
Rust
Raw Normal View History

//! Utility functions about comparison operators.
2018-08-01 22:48:41 +02:00
#![deny(clippy::missing_docs_in_private_items)]
2020-01-07 01:39:50 +09:00
use rustc_hir::{BinOpKind, Expr};
2016-03-25 22:57:03 -07:00
#[derive(PartialEq, Eq, Debug, Copy, Clone)]
/// Represent a normalized comparison operator.
2016-03-25 22:57:03 -07:00
pub enum Rel {
/// `<`
2016-03-25 22:57:03 -07:00
Lt,
/// `<=`
2016-03-25 22:57:03 -07:00
Le,
/// `==`
Eq,
/// `!=`
Ne,
2016-03-25 22:57:03 -07:00
}
2017-08-09 09:30:56 +02:00
/// Put the expression in the form `lhs < rhs`, `lhs <= rhs`, `lhs == rhs` or
/// `lhs != rhs`.
2019-12-27 16:12:26 +09:00
pub fn normalize_comparison<'a>(
op: BinOpKind,
lhs: &'a Expr<'a>,
rhs: &'a Expr<'a>,
) -> Option<(Rel, &'a Expr<'a>, &'a Expr<'a>)> {
2016-03-25 22:57:03 -07:00
match op {
2018-07-12 15:50:09 +08:00
BinOpKind::Lt => Some((Rel::Lt, lhs, rhs)),
BinOpKind::Le => Some((Rel::Le, lhs, rhs)),
BinOpKind::Gt => Some((Rel::Lt, rhs, lhs)),
BinOpKind::Ge => Some((Rel::Le, rhs, lhs)),
BinOpKind::Eq => Some((Rel::Eq, rhs, lhs)),
BinOpKind::Ne => Some((Rel::Ne, rhs, lhs)),
2016-03-25 22:57:03 -07:00
_ => None,
}
}