@retval false ok @retval true OOM, @c my_error() has been called. */
| 163 | @retval true OOM, @c my_error() has been called. |
| 164 | */ |
| 165 | bool append(const Elem &el) |
| 166 | { |
| 167 | return insert_dynamic(&array, &el); |
| 168 | } |
| 169 | |
| 170 | /// Pops the last element. Does nothing if array is empty. |
| 171 | Elem& pop() |
nothing calls this directly
no test coverage detected