Skip to main content

luaur_ast/methods/
temp_vector_t_empty.rs

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}