Re: [sigc] Re: [Boost-users] Signals & Slots
Carl Nygard wrote:
On Thu, 2004-11-18 at 14:09, Doug Gregor wrote:
On Nov 18, 2004, at 1:10 PM, Murray Cumming wrote:
I'm not in a position to do this at the moment, although possibly in the future. It would be *wonderful* if someone went off and studied both libraries in-depth to make this comparison, especially if that person was not intimately familiar with either library beforehand.
Available: http://www.3sinc.com/opensource/boost.bind-vs-sigc2.html
Updates for code samples from Chris Vine and Jonathan Brandmeyer will be forthcoming.
I could use some suggestions on how to incorporate common code into the code comparison tables.
And of course, any other comments, flames, etc. will be welcome. I'm only doing this as a service for keeping track of comments. I'd like to see some of this stuff make it into the C++ standard library.
As of the upcoming release, the Boost signals library does make a guarantee of the order of signals within a particular group. The order within a particular group is FIFO.
Does anyone have a url for a speed comparison between raw ptr and the boost smart_ptrs? e.g. ptr->someValue / ptr->someFunction() raw someValue scoped_ptr someBiggerValue shared_ptr someBiggerValue I am pretty certain I have seen this data before, but I can't find it anywhere and google is not turning up anything (or I am using wrong search terms). thanks ~msew
On Fri, 19 Nov 2004 19:21:35 -0800, msew@ev1.net
Does anyone have a url for a speed comparison between raw ptr and the boost smart_ptrs?
http://boost.org/libs/smart_ptr/smarttests.htm -- Caleb Epstein caleb dot epstein at gmail dot com
At 17:17 2004-11-21, Caleb Epstein wrote:
On Fri, 19 Nov 2004 19:21:35 -0800, msew@ev1.net
wrote: Does anyone have a url for a speed comparison between raw ptr and the boost smart_ptrs?
Aren't those just different ways to implement smart pointers? Not specifically looking at: shared_ptr vs scoped_ptr vs raw for calling speeds
At 17:17 2004-11-21, Caleb Epstein wrote:
On Fri, 19 Nov 2004 19:21:35 -0800, msew@ev1.net
wrote: Does anyone have a url for a speed comparison between raw ptr and the boost smart_ptrs?
Aren't those just different ways to implement smart pointers?
Not specifically looking at:
shared_ptr vs scoped_ptr vs raw for calling speeds
Perhaps you can be a bit more specific, because the page I just read at that url (thanks Caleb, BTW) seems very well matched to your initial request. Paul
participants (4)
-
Caleb Epstein
-
Edward Diener
-
msew@ev1.net
-
Paul Baxter