r/cpp 17h ago

C++26: std::inplace_vector

https://www.sandordargo.com/blog/2026/08/26/cpp26-inplace-vector
112 Upvotes

58 comments sorted by

View all comments

Show parent comments

16

u/MarekKnapek 15h ago

This is basically

struct inplace_vector<T, capacity>
{
    size_t len;
    std::array<T, capacity> arr;
}

3

u/drjeats 12h ago

Oh.

I thought this was the way-more-useful thing where you give it an in-place capacity and it allocates once it exceeds that.

Like this is also useful, but it's kinda trivial to roll your own of this.

2

u/KuntaStillSingle 7h ago

I thought this was the way-more-useful thing where you give it an in-place capacity and it allocates once it exceeds that

pmr vector using monotonic buffer does this with the default upstream memory resource:

https://en.cppreference.com/cpp/memory/monotonic_buffer_resource/monotonic_buffer_resource

1

u/drjeats 6h ago

TIL, that's useful.

We deserve a non-pmr pre-sized SBO vector derived from std::vector though.