Index: LvaluePropertyMap.html =================================================================== --- LvaluePropertyMap.html (revision 76956) +++ LvaluePropertyMap.html (working copy) @@ -19,13 +19,9 @@ LvaluePropertyMap -The LvaluePropertyMap provides an interface for accessing a -reference to a property object (instead of a copy of the object as in -the get() function required by ReadablePropertyMap). An -LvaluePropertyMap can be mutable or -non-mutable. The mutable LvaluePropertyMap returns a -reference whereas the non-mutable returns a const reference. +The LvaluePropertyMap provides operator[] and function get() for accessing a +reference to a value object. The return type refines that of function get()in ReadablePropertyMap; it can only be a reference (for a mutable LvaluePropertyMap) or a const reference (for a non-mutable LvaluePropertyMap).

Refinement of

@@ -60,7 +56,7 @@ boost::property_traits<PMap>::reference The reference type, which must be a reference or const reference to -the value typeof the property map. +the value type of the property map. @@ -90,7 +86,7 @@ value_type& for mutable, const value_type& otherwise. -Obtain a reference to the property identified by key. +Obtain a reference to the value associated with key. Index: ReadablePropertyMap.html =================================================================== --- ReadablePropertyMap.html (revision 76956) +++ ReadablePropertyMap.html (working copy) @@ -20,8 +20,8 @@ Readable Property Map -A Readable Property Map provides read-access to the value object associated with a given key via a call to the get() function. -The get() function returns a copy of the value object. +A Readable Property Map provides read-access to the value associated with a given key via a call to the get() function. +The return type of the get()function is convertible to a value object.

Refinement of

@@ -95,7 +95,7 @@ Get Property Value get(pmap, key) reference -Lookup the property of the object identified by key. +Lookup the value associated with key.