Returns whether or not the vector is empty.
| 176 | |
| 177 | // Returns whether or not the vector is empty. |
| 178 | constexpr bool empty() const { return length_ == 0; } |
| 179 | |
| 180 | // Returns the pointer to the start of the data in the vector. |
| 181 | T* start() const { |