@brief Returns whether the Vector is empty (i.e. whether its size is 0). * @note This function does not modify the container in any way. To clear the content of a vector, see * Vector::clear. */
| 210 | * Vector::clear. |
| 211 | */ |
| 212 | bool empty() const { return _data.empty(); } |
| 213 | |
| 214 | /** Returns the maximum number of elements that the Vector can hold. */ |
| 215 | ssize_t max_size() const { return _data.max_size(); } |
no outgoing calls
no test coverage detected