Test whether the Vector is empty.
(self, tr=None)
| 168 | self._set(index, val, self._to_transaction(tr)) |
| 169 | |
| 170 | def empty(self, tr=None): |
| 171 | """Test whether the Vector is empty.""" |
| 172 | return self._size(self._to_transaction(tr)) == 0 |
| 173 | |
| 174 | def resize(self, length, tr=None): |
| 175 | """Grow or shrink the size of the Vector.""" |
no test coverage detected