Date: Thu, 6 Mar 2025 11:06:21 +1300
Hi all,
I'm just wondering what people's assumptions are around
hive::assign()/fill-insert/range-insert and capacity. This is not a
standardisation question.
The standard ([sequence.reqmts]) does not specify one way or another
whether capacity changes as a result of a call to assign(), but
obviously if the assigned range is larger than capacity(), capacity()
will increase.
However, if the assigned range is smaller than capacity, would capacity
be expected to decrease? Or rather, what would /you /expect to happen?
Leave capacity as-is, avoid deallocations and put the burden on the
developer to call trim()? This has implications for whether or not
assign does the right thing by cache locality ie. maintaining the
minimum number of larger contiguous blocks, or by allocation/deallocation.
For vector, we would possibly expect capacity to stay the same in this
case. For list, we expect it to decrease.
Similarly, would you expect a call to hive::insert(num, element) when
size() == 0 but capacity() > num to potentially decrease capacity()?
Thanks,
Matt
I'm just wondering what people's assumptions are around
hive::assign()/fill-insert/range-insert and capacity. This is not a
standardisation question.
The standard ([sequence.reqmts]) does not specify one way or another
whether capacity changes as a result of a call to assign(), but
obviously if the assigned range is larger than capacity(), capacity()
will increase.
However, if the assigned range is smaller than capacity, would capacity
be expected to decrease? Or rather, what would /you /expect to happen?
Leave capacity as-is, avoid deallocations and put the burden on the
developer to call trim()? This has implications for whether or not
assign does the right thing by cache locality ie. maintaining the
minimum number of larger contiguous blocks, or by allocation/deallocation.
For vector, we would possibly expect capacity to stay the same in this
case. For list, we expect it to decrease.
Similarly, would you expect a call to hive::insert(num, element) when
size() == 0 but capacity() > num to potentially decrease capacity()?
Thanks,
Matt
Received on 2025-03-05 22:06:32