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