[boost] Re: [dynamic_bitset::reference] - questions to the users (and to the gurus)

2003-04-03 Thread Gennaro Prota
On Thu, 03 Apr 2003 14:15:27 +0200, Gennaro Prota [EMAIL PROTECTED] wrote: Now, for the gurus: this is the current interface of reference: class reference { friend class dynamic_bitsetBlock, Allocator; // the one and only non-copy ctor reference(dynamic_bitset bs_, size_type

[boost] Re: [dynamic_bitset::reference] - questions to the users (and to the gurus)

2003-04-03 Thread Gennaro Prota
A couple of corrections to my previous post: And even if, how could one use a reference considering that all its constructors are private? All non-copy constructors, actually. Client code can easily create a reference object by copy: dynamic_bitset::reference ref = b[0]; This brings