1use crate::array::NullArray; 2 3#[inline] 4pub(super) fn equal(lhs: &NullArray, rhs: &NullArray) -> bool { 5 lhs.len() == rhs.len() 6} 7 8