|
Boost : |
Subject: Re: [boost] [interprocess][circular_buffer] specialized containers should have container template argument
From: Jan Gaspar (jano_gaspar_at_[hidden])
Date: 2009-05-03 16:29:40
Hi Thorsten,
I'm sorry but I don't have time for this. I can still do circullar_buffer bug fixing and maintenance but have no time for new development as my priorities have changed.
Thank you for understanding.
Regards,
Jan
----- Original Message ----
From: Thorsten Ottosen <thorsten.ottosen_at_[hidden]>
To: "boost_at_[hidden]" <boost_at_[hidden]>
Sent: Friday, 1 May, 2009 10:44:09
Subject: [boost] [interprocess][circular_buffer] specialized containers should have container template argument
Hi Ion and Jan,
I often use these containers: flat_set, flat_map and circular_buffer. They are great.
However, we can make them faster if you allow a new template argument. For example
template
<
class T,
class Alloc,
class Buffer = /* some default */
>
class circular_buffer;
template
<
typename T,
typename Pred,
typename Alloc
class PushBackContainer = /* some default */
>
class flat_set;
My motivation is that these can perform somewhat better e.g. with an array (for circular_buffer), or auto_buffer (for flat_set/flat_map).
I think even some very simply array wrapper would be useable with
flat_set.
The EA STL implementation has this features.
What do you think?
-Thorsten
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk