returns number of items in vector
| 108 | int size() const { return _size; } |
| 109 | /// returns number of items in vector |
| 110 | int length() const { return _count; } |
| 111 | /// returns true if there are no items in vector |
| 112 | bool empty() const { return _count==0; } |
| 113 | /// clears all items |
no outgoing calls
no test coverage detected