El 04/02/2026 a las 18:08, Peter Dimov via Boost escribió:
"seque" was not an appropriate name as this container is not a "queue" (tipically a FIFO queue), but I'm open to renaming the container if a better name is proposed ;-)
Well, since it is better suited for stacks, "staque" then? :)
I like staque. :-)
More seriously though, segmented_vector seems fine.
It doesn't quite sound fine to me, because it's not a vector. The defining characteristic of vector is that it's contiguous.
There are examples out there calling "vector" to things that are not contiguous, like "stationary_vector" (https://github.com/mehrdadn/libvital/blob/master/doc/cpp/vital/container/sta...) or EASTL's segmented_vector (https://github.com/electronicarts/EASTL/blob/master/include/EASTL/segmented_...) Another name that's been proposed for a similar data structure is "segtor". Best, Ion