Skip to main content

luaur_analysis/methods/
pack_slice_operator_eq.rs

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