1use crate::records::temp_vector::TempVector; 2 3impl<'a, T> TempVector<'a, T> { 4 #[inline] 5 pub fn empty(&self) -> bool { 6 self.size_ == 0 7 } 8}