30 Oct
2017
30 Oct
'17
11:25 p.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.