Push a single item onto the end of the Vector.
(self, val, tr=None)
| 136 | return self._size(self._to_transaction(tr)) |
| 137 | |
| 138 | def push(self, val, tr=None): |
| 139 | """Push a single item onto the end of the Vector.""" |
| 140 | self._push(val, self._to_transaction(tr)) |
| 141 | |
| 142 | def back(self, tr=None): |
| 143 | """Get the value of the last item in the Vector.""" |
no test coverage detected