Skip to main content

luaur_analysis/methods/
index_operator_eq.rs

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