small_vector
small_vector copied to clipboard
"Small Vector" optimization for Modern C++: store up to a small number of items on the stack
Results
3
small_vector issues
Sort by
recently updated
recently updated
newest added
```c++ void resize(size_type count, T value = T()) { if (count = N) { // currently, all data on heap // move back to stack ///////////////////// // the bug is...
bug
when `size
It would be nice to also implement the erase functions.