From 331596873c1bd6a78cdab23b6ac85eff3327345a Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 30 Jul 2002 17:01:45 +0000 Subject: [PATCH] some editing [SVN r14645] --- dynamic_bitset.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dynamic_bitset.html b/dynamic_bitset.html index ca5e549..93169be 100644 --- a/dynamic_bitset.html +++ b/dynamic_bitset.html @@ -405,9 +405,10 @@ Some people prefer the name "toggle" to

Header Files

-

Defined in the header +

The class dynamic_bitset is defined in the header boost/dynamic_bitset.hpp. Also, there is a forward declaration for -class dynamic_bitset in the header dynamic_bitset in the header boost/dynamic_bitset_fwd.hpp.

@@ -469,7 +470,7 @@ None.
 dynamic_bitset::reference
 
-A proxy class that acts as a reference to a single bit. It contains +

A proxy class that acts as a reference to a single bit. It contains an assignment operator, a conversion to bool, an operator~, and a member function flip. It exists only as a helper class for dynamic_bitset's @@ -479,7 +480,7 @@ an instance of dynamic_bitset, i, j are of size_type and in the range [0,b.size()). Also, note that when we write b[i] we mean an object of type reference that was initalized from b[i]. The -variable x is a bool. +variable x is a bool.

ExpressionSemantics