| 171 | } |
| 172 | |
| 173 | void resize(fl::size n) FL_NOEXCEPT { |
| 174 | while (current_size < n) { |
| 175 | push_back(T()); |
| 176 | } |
| 177 | while (current_size > n) { |
| 178 | pop_back(); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | // Get the current size of the vector |
| 183 | constexpr fl::size size() const FL_NOEXCEPT { return current_size; } |
no test coverage detected