I'd like to see additional code examples that demonstrate some of the novel features of the data structure -- and specifically in comparison to vector and array.
- vector: inplace_vector throw bad_alloc exception on
push_back, emplace_back, insert, etc. when size == capacity or asserts in non-exception environment
- highlight the try_emplace, try_insert, etc methods
- array: doesn't support push_back etc
I'd like to see additional code examples that demonstrate some of the novel features of the data structure -- and specifically in comparison to vector and array.
push_back,emplace_back,insert, etc. when size == capacity or asserts in non-exception environment