
31 Oct
2017
31 Oct
'17
12:25 a.m.
On 30/10/2017 19:27, Thorsten Ottosen via Boost wrote:
That could be implemented if capacity() is defined as:
max(size(), min(back_capacity(), front_capacity());
Is this not just equivalent to
min(back_capacity(), front_capacity())
given that back/front_capacity >= size()?
Right. Good catch.