
Does boost or any other open source have an implementation of a bounded circular buffer? My search in boost and google yielded naught. The main purpose of this container is to pipeline messages in a typical producer-consumer scenario. I was surprised not to find any implementation. TIA Joe [Non-text portions of this message have been removed]

"Joe Mariadassou" <joemar@vcisnet.net> wrote in message news:000001c30a2e$88bc21b0$7300a8c0@vcisjoemar...
Does boost or any other open source have an implementation of a bounded circular buffer? My search in boost and google yielded naught. The main purpose of this container is to pipeline messages in a typical producer-consumer scenario. I was surprised not to find any implementation.
I just use a std::deque, trimming items if the container gets too big. -- Keith
participants (2)
-
Joe Mariadassou
-
Keith Rollin