Skip to main content

luaur_analysis/methods/
reduction_operator_eq.rs

1use crate::records::reduction::Reduction;
2
3impl Reduction {
4    pub fn operator_eq(&self, other: &Reduction) -> bool {
5        self.resultType == other.resultType
6    }
7}