Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / contract / doc / extras.qbk
index c901888..ea0a599 100644 (file)
@@ -18,13 +18,13 @@ In these cases, programmers can declare old values using [classref boost::contra
 
 However, in some other cases it might be desirable to simply skip assertions that use old values when the respective old value types are not copyable, without causing compile-time errors.
 Programmers can do this using [classref boost::contract::old_ptr_if_copyable] instead of [classref boost::contract::old_ptr] and checking if the old value pointer is not null before dereferencing it in postconditions.
-For example, consider the following function template that could in general be instantiated for types `T` that are not copy constructible (that is for which `boost::contract::is_old_value_copyable<T>::value` is `false`, see [@../../example/features/old_if_copyable.cpp =old_if_copyable.cpp=]):
+For example, consider the following function template that could in general be instantiated for types `T` that are not copy constructible (that is for which [classref boost::contract::is_old_value_copyable]`<T>::value` is `false`, see [@../../example/features/old_if_copyable.cpp =old_if_copyable.cpp=]):
 [footnote
 *Rationale:*
 __N1962__ and other proposals to add contracts to C++ do not provide a mechanism to selectively disable copies only for old value types that are not copy constructible.
-However, this library provides such a mechanism to allow to program contracts for template code without necessarily adding extra copy constructible type requirements that would not be present if it were not for copying the old values (so compiling the code with and without contracts will not necessarily alter the type requirements of the program).
-Something similar could be achieved combing C++17 `if constexpr` with __N1962__ or __P0380__ so that old value expressions within template code could be guarded by `if constexpr` statements checking if the old value types are copyable or not.
-For example, assuming old values are added to __P0380__ (using the `oldof(...)` syntax) and that C++17 `if constexpr` can be used within __P0380__ contracts:
+However, this library provides such a mechanism to allow to program contracts for template code without necessarily adding extra copy constructible type requirements that would not be present if it were not for copying old values (so compiling the code with and without contracts will not necessarily alter the type requirements of the program).
+Something similar could be achieved combing C++17 `if constexpr` with __N1962__ or __P0380__ so that old value expressions within template code can be guarded by `if constexpr` statements checking if the old value types are copyable or not.
+For example, assuming old values are added to __P0380__ (using some kind of `oldof(...)` syntax) and that C++17 `if constexpr` can be used within __P0380__ contracts:
 ``
     template<typename T>
     void offset(T& x, int count)
@@ -37,22 +37,46 @@ For example, assuming old values are added to __P0380__ (using the `oldof(...)`
 [old_if_copyable_offset]
 
 The old value pointer `old_x` is programmed using [classref boost::contract::old_ptr_if_copyable].
-When `T` is copyable, this `boost::contract::old_ptr_if_copyable]<T>` behaves like `boost::contract::old_ptr<T>`.
-When `T` is not copyable instead, `boost::contract::old_ptr_if_copyable<T>` will simply not copy `x` at run-time and leave `old_x` initialized as a null pointer.
-Therefore, [classref boost::contract::old_ptr_if_copyable] objects like `old_x` must be checked to be not null as in `if(old_x) ...` before they are dereferenced in postconditions and exception guarantees.
+When `T` is copyable, [classref boost::contract::old_ptr_if_copyable]`<T>` behaves like [classref boost::contract::old_ptr]`<T>`.
+When `T` is not copyable instead, [classref boost::contract::old_ptr_if_copyable]`<T>` will simply not copy `x` at run-time and leave `old_x` initialized to a null pointer.
+Therefore, [classref boost::contract::old_ptr_if_copyable] objects like `old_x` must be checked to be not null as in `if(old_x) ...` before they are dereferenced in postconditions and exception guarantees (to avoid run-time errors of dereferencing null pointers).
 
-If the above example used [classref boost::contract::old_ptr] instead then this library would have generated a compile-time error when `offset` is instantiated with types `T` that are not copy constructible (but only if `old_x` is actually dereferenced somewhere in the contract assertions using `*old_x ...`, `old_x->...`, etc.).
+If the above example used [classref boost::contract::old_ptr] instead then this library would have generated a compile-time error when `offset` is instantiated with types `T` that are not copy constructible (but only if `old_x` is actually dereferenced somewhere, for example in the contract assertions using `*old_x ...` or `old_x->...`).
+[footnote
+Technically, on C++17 it is possible to use [classref boost::contract::old_ptr] together with `if constexpr` instead of using [classref boost::contract::old_ptr_if_copyable], for example:
+``
+    template<typename T>
+    void offset(T& x, int count) {
+        boost::contract::old_ptr<T> old_x;
+        if constexpr(boost::contract::is_old_value_copyable<T>::value) old_x = BOOST_CONTRACT_OLDOF(x);
+        boost::contract::check c = boost::contract::function()
+            .postcondition([&] {
+                if constexpr(boost::contract::is_old_value_copyable<T>::value) BOOST_CONTRACT_ASSERT(x == *old_x + count);
+            })
+        ;
+
+        x += count;
+    }
+``
+However, the authors find this code less readable and more verbose than its equivalent that uses [classref boost::contract::old_ptr_if_copyable].
+Guarding old value copies and related assertions with `if constexpr` is useful instead when the guard condition checks type requirements more complex than just [classref boost::contract::is_old_value_copyable] (as shown later in this documentation).
+]
 
 When C++11 `auto` declarations are used with [macroref BOOST_CONTRACT_OLDOF], this library always defaults to using the [classref boost::contract::old_ptr] type (because its type requirements are more stringent than [classref boost::contract::old_ptr_if_copyable]).
-If programmers want to relax the copyable type requirement, they must do so explicitly by using [classref boost::contract::old_ptr_if_copyable] instead of using `auto`.
 For example, the following statements are equivalent:
 
     auto old_x = BOOST_CONTRACT_OLDOF(x); // C++11 auto declarations always use `old_ptr` (never `old_ptr_if_copyable`).
     boost::contract::old_ptr<decltype(x)> old_x = BOOST_CONTRACT_OLDOF(x);
 
+If programmers want to relax the copyable type requirement, they must do so explicitly by using the [classref boost::contract::old_ptr_if_copyable] type instead of using `auto` declarations.
+
+[heading Old Value Type Traits]
+
 This library uses [classref boost::contract::is_old_value_copyable] to determine if an old value type is copyable or not, and then [classref boost::contract::old_value_copy] to actually copy the old value.
-By default, `boost::contract::is_old_value_copyable<T>` is equivalent to `boost::is_copy_constructible<T>` and `boost::contract::old_value_copy<T>` is implemented using `T`'s copy constructor.
+
+By default, [classref boost::contract::is_old_value_copyable]`<T>` is equivalent to `boost::is_copy_constructible<T>` and [classref boost::contract::old_value_copy]`<T>` is implemented using `T`'s copy constructor.
 However, these type traits can be specialized by programmers for example to avoid making old value copies of types even when they have a copy constructor (maybe because these copy constructors are too expensive), or to make old value copies for types that do not have a copy constructor, or for any other specific need programmers might have for the types in question.
+
 For example, the following specialization of [classref boost::contract::is_old_value_copyable] intentionally avoids making old value copies for all expressions of type `w` even if that type has a copy constructor (see [@../../example/features/old_if_copyable.cpp =old_if_copyable.cpp=]):
 
 [old_if_copyable_w_decl]
@@ -63,12 +87,9 @@ On the flip side, the following specializations of [classref boost::contract::is
 [old_if_copyable_p_decl]
 [old_if_copyable_p_spec]
 
-[heading No C++11]
-
-In general, `boost::is_copy_constructible` and therefore [classref boost::contract::is_old_value_copyable] require C++11 `decltype` and SFINAE to automatically detect if a given type is not copyable.
-On non-C++11 compilers, it is possible to inherit the old value type from `boost::noncopyable`, or use `BOOST_MOVABLE_BUT_NOT_COPYABLE`, or specialize `boost::is_copy_constructible` (see [@http://www.boost.org/doc/libs/release/libs/type_traits/doc/html/boost_typetraits/reference/is_copy_constructible.html `boost::is_copy_constructible`] documentation for more information).
-Alternatively, it is possible to just specialize [classref boost::contract::is_old_value_copyable].
-For example, for a non-copyable type `n` (see [@../../example/features/old_if_copyable.cpp =old_if_copyable.cpp=]):
+In general, `boost::is_copy_constructible` and therefore [classref boost::contract::is_old_value_copyable] require C++11 `decltype` and SFINAE to automatically detect if a given type is copyable or not.
+On non-C++11 compilers, it is possible to inherit the old value type from `boost::noncopyable`, or use `BOOST_MOVABLE_BUT_NOT_COPYABLE`, or specialize `boost::is_copy_constructible` (see [@http://www.boost.org/doc/libs/release/libs/type_traits/doc/html/boost_typetraits/reference/is_copy_constructible.html `boost::is_copy_constructible`] documentation for more information), or just specialize [classref boost::contract::is_old_value_copyable].
+For example, for a non-copyable type `n` the following code will work also on non-C++11 compilers (see [@../../example/features/old_if_copyable.cpp =old_if_copyable.cpp=]):
 
 [old_if_copyable_n_decl]
 [old_if_copyable_n_spec]
@@ -83,21 +104,20 @@ Some of these type requirements might be necessary only to check the assertions
 In some cases it might be acceptable, or even desirable, to cause a compile-time error when a program uses types that do not provide all the operations needed to check contract assertions (because it is not possible to fully check the correctness of the program as specified by its contracts).
 In these cases, programmers can specify contract assertions as we have seen so far, compilation will fail if user types do not provide all operations necessary to check the contracts.
 
-However, in some other cases it might be desirable to not augment the type requirements of a program because of contract assertions and to simply skip these assertions when user types do not provide all the operations necessary to check them, without causing compile-time errors.
-Programmers can do this using [funcref boost::contract::condition_if] (or [funcref boost::contract::condition_if_c]).
+However, in some other cases it might be desirable to not augment the type requirements of a program just because of contract assertions and to simply skip assertions when user types do not provide all the operations necessary to check them, without causing compile-time errors.
+Programmers can do this using `if constexpr` on C++17 compilers, and [funcref boost::contract::condition_if] (or [funcref boost::contract::condition_if_c]) on non-C++17 compilers.
 
 For example, let's consider the following `vector<T>` class template equivalent to `std::vector<T>`.
 C++ `std::vector<T>` does not require that its value type parameter `T` has an equality operator `==` (it only requires `T` to be copy constructible, see `std::vector` documentation).
 However, the contracts for the `vector<T>::push_back(value)` public function include a postcondition `back() == value` that introduces the new requirement that `T` must also have an equality operator `==`.
 Programmers can specify this postcondition as usual with `BOOST_CONTRACT_ASSERT(back() == value)` an let the program fail to compile when users instantiate `vector<T>` with a type `T` that does not provide an equality operator `==`.
-Otherwise, programmers can specify this postcondition using [funcref boost::contract::condition_if] to evaluate the asserted condition only for types `T` that have an equality operator `==` (and trivially evaluate to `true` otherwise).
-On C++17 compilers, the same can be achieved using `if constexpr` instead of [funcref boost::contract::condition_if] resulting in a more concise and readable syntax.
+Otherwise, programmers can guard this postcondition using C++17 `if constexpr` to evaluate the asserted condition only for types `T` that have an equality operator `==` and skip it otherwise.
 [footnote
 *Rationale:*
 __N1962__ and other proposals to add contracts to C++ do not provide a mechanism to selectively disable assertions based on their type requirements.
-However, this library provides such a mechanism to allow to program contracts for template code without necessarily adding extra type requirements that would not be present if it was not for the contracts (so compiling the code with and without contracts will not necessarily alter the type requirements of the program).
-Something similar could be achieved combing C++17 `if constexpr` with __N1962__ or __P0380__ so that contract assertions within template code could be guarded by `if constexpr` statements checking related type requirements (__N1962__ already supports `if` statements under the name of /select assertions/, __P0380__ does not so probably `if` statements should be added to __P0380__ as well).
-For example, assuming old values are added to __P0380__ (using the `oldof(...)` syntax) and that C++17 `if constexpr` can be used within __P0380__ contracts:
+However, this library provides such a mechanism to allow to program contracts for template code without necessarily adding extra type requirements that would not be present if it was not for the contracts (so compiling the code with and without contracts will not alter the type requirements of the program).
+Something similar could be achieved combing C++17 `if constexpr` with __N1962__ or __P0380__ so that contract assertions within template code could be guarded by `if constexpr` statements checking the related type requirements (__N1962__ already allows of `if` statements in contracts under the name of /select assertions/, __P0380__ does not so probably `if` statements should be added to __P0380__ as well).
+For example, assuming C++17 `if constexpr` can be used within __P0380__ contracts:
 ``
     template<typename T>
     class vector {
@@ -108,36 +128,38 @@ For example, assuming old values are added to __P0380__ (using the `oldof(...)`
     };
 ``
 ]
-For example (see [@../../example/features/condition_if.cpp =condition_if.cpp=]):
-
-[import ../example/features/condition_if.cpp]
-[table
-[[Until C++17 (without `if constexpr`)][Since C++17 (with `if constexpr`)]]
-[[[condition_if]] [``
-template<typename T>
-class vector {
-public:
-    void push_back(T const& value) {
-        boost::contract::check c = boot::contract::public_function(this)
-            .postcondition([&] {
-                // Guard with `if constexpr` for T without `==`.
-                if constexpr(boost::has_equal_to<T>::value)
-                    BOOST_CONTRACT_ASSERT(back() == value);
-            })
-        ;
-
-        vect_.push_back(value);
-    }
+For example:
 
+    template<typename T>
+    class vector {
+    public:
+        void push_back(T const& value) {
+            boost::contract::check c = boot::contract::public_function(this)
+                .postcondition([&] {
+                    // Guard with `if constexpr` for T without `==`.
+                    if constexpr(boost::has_equal_to<T>::value)
+                        BOOST_CONTRACT_ASSERT(back() == value);
+                })
+            ;
+
+            vect_.push_back(value);
+        }
 
+        /* ... */
 
+More in general, `if constexpr` can be used to guard a mix of both old value copies and contract assertions that introduce specific extra type requirements.
+For example, the following `swap` function can be called on any type `T` that is movable but its old value copies and postcondition assertions are evaluated only for types `T` that are also copyable and have an equality operator `==` (see [@../../example/features/if_constexpr.cpp =if_constexpr.cpp=]):
 
+[import ../example/features/if_constexpr.cpp]
+[if_constexpr]
 
+[heading No `if constexpr` (no C++17)]
 
+On non-C++17 compilers where `if constexpr` is not available, it is possible to use [funcref boost::contract::condition_if] to skip assertions based on type requirements (even if this code is less readable and more verbose than using `if constexpr`).
+For example (see [@../../example/features/condition_if.cpp =condition_if.cpp=]):
 
-    /* ... */
-``]]
-]
+[import ../example/features/condition_if.cpp]
+[condition_if]
 
 More in general, [funcref boost::contract::condition_if] is used as follow:
 
@@ -146,15 +168,15 @@ More in general, [funcref boost::contract::condition_if] is used as follow:
     )
 
 Where `Pred` is a nullary boolean meta-function and `cond` is a nullary boolean functor.
-If `Pred::value` is statically evaluated to be `true` at compile-time then `cond()` is called at run-time and its boolean result is returned by the enclosing [classref boost::contract::condition_if] call.
-Otherwise, if `Pred::value` is statically evaluated to be `false` at compile-time then [classref boost::condition_if] trivially returns `true`.
-Therefore, if `cond` is a functor template instantiation (not just a functor) then its call that contains the assertion operations with the extra type requirements (e.g., the equality operator `==`) will not be actually instantiated and compiled unless the compiler determines at compile-time that `Pred::value` is `true` (functor templates like `std::equal_to` and C++14 generic lambdas can be used to program `cond`, but C++11 lambdas cannot).
+If `Pred::value` is statically evaluated to be `true` at compile-time then `cond()` is called at run-time and its boolean result is returned by the enclosing [funcref boost::contract::condition_if] call.
+Otherwise, if `Pred::value` is statically evaluated to be `false` at compile-time then [funcref boost::contract::condition_if] trivially returns `true`.
+Therefore, if `cond` is a functor template instantiation (not just a functor) then its call that contains the assertion operations with the extra type requirements (e.g., the equality operator `==`) will not be actually instantiated and compiled unless the compiler determines at compile-time that `Pred::value` is `true` (when used this way, functor templates like `std::equal_to` and C++14 generic lambdas can be used to program `cond`, but C++11 lambdas cannot).
 
-The [funcref boost::contract::condition_if] function template is a special case of the more general [funcref boost::contract::call_if], specifically `boost::contract::condition_if<Pred>(cond)` is equivalent to `boost::contract::call_if<Pred>(cond).else_([] { return true; })`.
+The [funcref boost::contract::condition_if] function template is a special case of the more general [funcref boost::contract::call_if], specifically [funcref boost::contract::condition_if]`<Pred>(cond)` is logically equivalent to [funcref boost::contract::call_if]`<Pred>(cond).else_([] { return true; })`.
 [footnote
-For optimization reasons, the internal implementation of [funcref boost::contract::condition_if] does not actually use [funcref boost::contract::call_if].
+The internal implementation of [funcref boost::contract::condition_if] is optimized and it does not actually use [funcref boost::contract::call_if].
 ]
-The [funcref boost::contract::call_if] function template accepts a number of optional /else-if/ statements and one optional /else/ statement:
+The [funcref boost::contract::call_if] function template also accepts a number of optional /else-if/ statements and one optional /else/ statement:
 
     boost::contract::call_if<Pred1>(
         t1
@@ -167,29 +189,23 @@ The [funcref boost::contract::call_if] function template accepts a number of opt
     )
 
 Where `Pred1`, `Pred2`, ... are nullary boolean meta-functions and `t1`, `t2`, ..., `e` are nullary functors.
-The return types of the functor calls `t1()`, `t2()`, ..., `e()` must either be all the same (possibly all `void`) or be of types implicitly convertible into one another.
+The return types of the functor calls `t1()`, `t2()`, ..., `e()` must either be all the same (including possibly all `void`) or be of types implicitly convertible into one another.
 At run-time [funcref boost::contract::call_if] will call the functor `t1()`, or `t2()`, ..., or `e()` depending on which meta-function `Pred1::value`, `Pred2::value`, ... is statically evaluated to be `true` or `false` at compile-time, and it will return the value returned by the functor being called. 
-If `t1`, `t2`, ..., `e` are nullary functor template instantiations (not just nullary functors) then their code will only be compiled if the compiler determines they need to be actually called at run-time (so only if the related `Pred1::value`, `Pred2::value`, ... are respectively evaluated to be `true` or `false` at compile-time).
+If `t1`, `t2`, ..., `e` are functor template instantiations (not just functors) then their code will only be compiled if the compiler determines they need to be actually called at run-time (so only if the related `Pred1::value`, `Pred2::value`, ... are respectively evaluated to be `true` or `false` at compile-time).
 All the `else_if<...>(...)` statements are optional.
 The `else_(...)` statement is optional if the functor calls return `void`, otherwise it is required.
 
+In general, [funcref boost::contract::call_if] can be used to program contract assertions that compile and check different functor templates depending on related predicates being statically evaluated to be `true` or `false` at compile-time (but in most cases [funcref boost::contract::condition_if] should be sufficient and less verbose to use).
 The [funcref boost::contract::condition_if_c], [funcref boost::contract::call_if_c], and `.else_if_c` function templates work similarly to their counterparts without the `..._c` postfix seen so far, but they take their predicate template parameters as static boolean values instead of nullary boolean meta-functions.
 
-In general, [funcref boost::contract::call_if] can be used to program contract assertions that compile and check different functor templates depending on related predicates being statically evaluated to be `true` or `false` at compile-time (but in most cases [funcref boost::contract::condition_if] should be sufficient and less verbose to use).
+[import ../example/features/call_if_cxx14.cpp]
 On compilers that support C++17 `if constexpr` there should be no need to use [funcref boost::contract::condition_if] or [funcref boost::contract::call_if] because `if constexpr` can be used instead (making the code more readable and easier to program).
-
-[heading If-Constexpr Emulation (C++14)]
-
-A part from its use within contracts, on C++14 compilers [funcref boost::contract::call_if] can be used together with C++14 generic lambdas to emulate C++17 `if constexpr`.
 [footnote
-Boost.Hana (`boost::hana::if_`) and probably other approaches can also be used together with generic lambdas to emulate C++17 `if constexpr` on C++14 compilers.
-]
-For example (see [@../../example/features/call_if_cxx14.cpp =call_if_cxx14.cpp=]):
-
-[import ../example/features/call_if_cxx14.cpp]
-[table
-[[Until C++17 (without `if constexpr`)][Since C++17 (with `if constexpr`)]]
-[[[call_if_cxx14]] [``
+A part from its use within contracts, [funcref boost::contract::call_if] can be used together with C++14 generic lambdas to emulate C++17 `if constexpr` (`boost::hana::if_` and probably other approaches can also be used together with generic lambdas to emulate C++17 `if constexpr` on C++14 compilers).
+For example, the following implementation of `myadvance` will compile since C++14 and it is more concise, easier to read and maintain than the usual implementation of `std::advance` that uses tag dispatching (see [@../../example/features/call_if_cxx14.cpp =call_if_cxx14.cpp=]):
+[call_if_cxx14]
+Of course, since C++17 the implementation that uses `if constexpr` is even more readable and concise:
+``
 template<typename Iter, typename Dist>
 void myadvance(Iter& i, Dist n) {
     if constexpr(is_random_access_iterator<Iter>::value) {
@@ -198,17 +214,14 @@ void myadvance(Iter& i, Dist n) {
         if(n >= 0) while(n--) ++i;
         else while(n++) --i;
     } else if constexpr(is_input_iterator<Iter>::value) {
-        while(n--) ++p;
+        while(n--) ++i;
     } else {
         static_assert(false, "requires at least input iterator");
     }
 }
-``]]
+``
 ]
 
-This implementation is more concise, easier to read and maintain than the usual implementation of `std::advance` that uses tag dispatching.
-Of course the implementation that uses C++17 `if constexpr` is even more readable and concise.
-
 [endsect]
 
 [section Volatile Public Functions]
@@ -245,7 +258,7 @@ Note that while all public functions can be made to check `const volatile` invar
 That is because both `const` and `volatile` can always be added but never stripped in C++ (a part from forcefully via `const_cast`) but `const` is always automatically added by this library in order to enforce contract constant-correctness (see __Constant_Correctness__).
 That said, it would be too stringent for this library to also automatically add `volatile` and require all functions to check `const volatile` (not just `const`) invariants because only `volatile` members can be accessed from `const volatile` invariants so there could be many `const` (but not `const volatile`) members that are accessible from `const` invariants but not from `const volatile` invariants.
 To avoid this confusion, this library has chosen to draw a clear dichotomy between `const` and `const volatile` invariants so that only volatile public functions check `const volatile` invariants and only non-volatile public functions check `const` (but not `const volatile`) invariants.
-This is simple and should serve most cases.
+This is a clear distinction and it should serve most cases.
 If programmers need non-volatile public functions to also check `const volatile` invariants, they can explicitly do so by calling the `const volatile` invariant function from the `const` invariant function as shown in this documentation.
 ]
 
@@ -254,7 +267,7 @@ If programmers need non-volatile public functions to also check `const volatile`
         void invariant() const volatile { ... }                 // Volatile invariants.
 
         void invariant() const {
-            const_cast<u const volatile*>(this)->invariant();   // Call `const volatile` invariant function above.
+            auto const volatile* cv = this; cv->invariant();    // Call `const volatile` invariant function above.
             ...                                                 // Other non-volatile invariants.
         }
 
@@ -268,11 +281,11 @@ If programmers need non-volatile public functions to also check `const volatile`
 [section Move Operations]
 
 As with all public operations of a class, also public move operations should maintain class invariants (see __Stroustrup13__, p. 520).
-Specifically, C++ requires the following:
+Specifically, at a minimum C++ requires the following:
 
 * The moved-from object can be copy assigned.
 * The moved-from object can be move assigned.
-* The moved-from object can be destroyed (if not for anything else, this requires that class invariants are maintained by move operations because the destructor of the moved-from object requires class invariants to be satisfied at its entry, as always with destructors see __Destructor_Calls__).
+* The moved-from object can be destroyed (if not for any other reason, this requires that class invariants are maintained by move operations because the destructor of the moved-from object requires class invariants to be satisfied at its entry, as always with destructors see __Destructor_Calls__).
 
 Therefore, both the move constructor and the move assignment operator need to maintain the class invariants of the moved-from object so their contracts can be programmed using [funcref boost::contract::constructor] and [funcref boost::contract::public_function] as usual.
 For example (see [@../../example/features/move.cpp =move.cpp=]):
@@ -282,8 +295,8 @@ For example (see [@../../example/features/move.cpp =move.cpp=]):
 
 This example assumes that it is possible to call the public function `moved()` on the moved-from object.
 [footnote
-In this example, the `moved()` function is simple enough that programmers could decide to not even call [funcref boost::contract::public_function] from it.
-However, calling [funcref boost::contract::public_function] from `moved()` has no negative impact a part from run-time overhead because this library already automatically disables contract checking while checking other contracts (so this call will not cause infinite recursion).
+In this example, the `moved()` function is simple enough that programmers could decide to not even call [funcref boost::contract::public_function] from it for optimization reasons.
+However, calling [funcref boost::contract::public_function] from `moved()` has no negative impact, a part from run-time overhead, because this library automatically disables contract checking while checking other contracts (so this call will not cause infinite recursion).
 ]
 
 [note
@@ -293,14 +306,14 @@ Therefore, unless the move operations are not public or they have no preconditio
 ]
 
 As always, programmers can decide to not program contracts for a given type.
-Specifically, they might decide to not program contracts for a class that needs to be moved in order to skip the run-time overhead of checking contract assertions to optimize performance (see __Benefits_and_Costs__).
+Specifically, they might decide to not program contracts for a class that needs to be moved in order to avoid the run-time overhead of checking contract assertions and to maximize performance (see __Benefits_and_Costs__).
 
 [endsect]
 
 [section Unions]
 
-In C++, a `union` cannot have virtual functions, bases classes, and cannot be used as a base class thus subcontracting ([classref boost::contract::virtual_], [macroref BOOST_CONTRACT_OVERRIDE], etc.) do not apply to unions.
-Also a `union` cannot inherit from [classref boost::contract::constructor_precondition] (because it cannot have base classes) so such a class is used to declare a local object that checks constructor preconditions (at the very beginning of the constructor before old value copies and other contracts, see declaration of `pre` in the example below).
+A C++ `union` cannot have virtual functions, base classes, and cannot be used as a base class thus subcontracting ([classref boost::contract::virtual_], [macroref BOOST_CONTRACT_OVERRIDE], etc.) do not apply to unions.
+Also a `union` cannot inherit from [classref boost::contract::constructor_precondition] (because it cannot have base classes), instead [classref boost::contract::constructor_precondition] is used to declare a local object that checks constructor preconditions (at the very beginning of the constructor before old value copies and other contracts, see declaration of `pre` in the example below).
 A part from that, this library is used as usual to program contracts for unions.
 For example (see [@../../example/features/union.cpp =union.cpp=]):
 
@@ -313,15 +326,15 @@ For example (see [@../../example/features/union.cpp =union.cpp=]):
 
 This library provides three predefined /assertion levels/ that can be used to selectively disable assertions depending on their computational complexity:
 [footnote
-The assertion levels predefined by this library are similar to the default, audit, and axiom levels proposed in __P0380__.
+The assertion levels predefined by this library are similar to the default, audit, and axiom levels from __P0380__.
 ]
 
 * [macroref BOOST_CONTRACT_ASSERT] is used to assert conditions that are not computationally expensive, at least compared to the cost of executing the function body.
-These assertions are always checked at run-time, they are not disabled.
+These assertions are the ones we have seen so far, they are always checked at run-time and they cannot be disabled.
 * [macroref BOOST_CONTRACT_ASSERT_AUDIT] is used to assert conditions that are computationally expensive compared to the cost of executing the function body.
-These assertions are not checked at run-time unless programmers explicitly define [macroref BOOST_CONTRACT_AUDITS] (undefined by default), but the conditions are always compiled and validated syntactically (even when they are not actually evaluated and checked at run-time).
+These assertions are not checked at run-time unless programmers explicitly define [macroref BOOST_CONTRACT_AUDITS] (undefined by default), but the asserted conditions are always compiled and therefore validated syntactically (even when they are not actually evaluated and checked at run-time).
 * [macroref BOOST_CONTRACT_ASSERT_AXIOM] is used to assert conditions that are computationally prohibitive, at least compared to the cost of executing the function body.
-These assertions are never evaluated or checked at run-time, but the asserted conditions are always compiled and validated syntactically so these assertions can serve as formal comments in the code.
+These assertions are never evaluated or checked at run-time, but the asserted conditions are always compiled and therefore validated syntactically (so these assertions can serve as formal comments to the code).
 
 In addition, [macroref BOOST_CONTRACT_CHECK_AUDIT] and [macroref BOOST_CONTRACT_CHECK_AXIOM] are similar to [macroref BOOST_CONTRACT_ASSERT_AUDIT] and [macroref BOOST_CONTRACT_ASSERT_AXIOM] but they are used to program audit and axiom levels for implementation checks instead of assertions (see __Implementation_Checks__).
 
@@ -344,42 +357,42 @@ For example, (see [@../../example/features/assertion_level.cpp =assertion_level.
 [assertion_level_axiom]
 [assertion_level_class_end]
 
-In addition to the assertion levels predefined by this library, programmers are free to define their own.
+In addition to these assertion levels that are predefined by this library, programmers are free to define their own.
 For example, the following macro could be used to program and selectively disable assertions that have exponential computational complexity `O(e^n)`:
 
-    #ifdef NO_EXPONENTIALLY_COMPLEX_ASSERTIONS
-        // Following will compile but never actually evaluate `cond`.
-        #define EXP_ASSERTION(cond) BOOST_CONTRACT_ASSERT(true || (cond))
-    #else
+    #ifdef EXPONENTIALLY_COMPLEX_ASSERTIONS
         // Following will compile and also evaluate `cond`.
-        #define EXP_ASSERTION(cond) BOOST_CONTRACT_ASSERT(cond)
+        #define ASSERT_EXP(cond) BOOST_CONTRACT_ASSERT(cond)
+    #else
+        // Following will compile but never actually evaluate `cond`.
+        #define ASSERT_EXP(cond) BOOST_CONTRACT_ASSERT(true || (cond))
     #endif
 
     ...
 
-    EXP_ASSERTION(``[^['some-exponentially-complex-boolean-condition]]``);
+    ASSERT_EXP(``[^['some-exponentially-complex-boolean-condition]]``);
 
 [endsect]
 
 [section Disable Contract Checking]
 
 Checking contracts adds run-time overhead and can slow down program execution (see __Benefits_and_Costs__).
-Therefore, programmers can define any combination of the following macros (`-D` option in Clang and GCC, `/D` option in MSVC, etc.) to instruct this library to not check specific kind of contract conditions at run-time:
+Therefore, programmers can define any combination of the following macros (`-D` option in Clang and GCC, `/D` option in MSVC, etc.) to instruct this library to not check specific groups of contract conditions at run-time:
 
 * Define [macroref BOOST_CONTRACT_NO_PRECONDITIONS] to not check preconditions.
 * Define [macroref BOOST_CONTRACT_NO_POSTCONDITIONS] to not check postconditions.
 * Define [macroref BOOST_CONTRACT_NO_EXCEPTS] to not check exception guarantees.
 * Define [macroref BOOST_CONTRACT_NO_ENTRY_INVARIANTS] to not check class invariants at call entry.
 * Define [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS] to not check class invariants at call exit.
-* Or, define [macroref BOOST_CONTRACT_NO_INVARIANTS] to not check class invariants at both call entry and exit. (This is provided for convenience, it is equivalent to define both [macroref BOOST_CONTRACT_NO_ENTRY_INVARIANTS] and [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS].)
-* Define [macroref BOOST_CONTRACT_NO_CHECKS] to not perform implementation checks.
+* Or, define [macroref BOOST_CONTRACT_NO_INVARIANTS] to not check class invariants at both call entry and exit. (This is provided for convenience, it is equivalent to defining both [macroref BOOST_CONTRACT_NO_ENTRY_INVARIANTS] and [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS].)
+* Define [macroref BOOST_CONTRACT_NO_CHECKS] to not evaluate implementation checks.
 
 [note
 Old values can be used by both postconditions and exception guarantees so it is necessary to define both [macroref BOOST_CONTRACT_NO_POSTCONDITIONS] and [macroref BOOST_CONTRACT_NO_EXCEPTS] to disable old value copies.
 ]
 
 By default, none of these macros are defined so this library checks all contracts.
-When these macros are defined by the user, the implementation code of this library is internally optimized to minimize as much as possible any run-time and compile-time overhead associated with checking and compiling contracts (see __Disable_Contract_Compilation__ for techniques to completely remove any run-time and compile-time overhead associated with contract code).
+When these macros are defined by the user, the implementation code of this library is internally optimized to minimize as much as possible any run-time and compile-time overhead associated with checking and compiling contracts (see __Disable_Contract_Compilation__ for techniques to completely remove any run-time and compile-time overheads associated with contract code).
 
 For example, programmers could decide to check all contracts during early development builds, but later check only preconditions and maybe entry invariants for release builds by defining [macroref BOOST_CONTRACT_NO_POSTCONDITIONS], [macroref BOOST_CONTRACT_NO_EXCEPTS], [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS], and [macroref BOOST_CONTRACT_NO_CHECKS].
 
@@ -387,7 +400,7 @@ For example, programmers could decide to check all contracts during early develo
 
 [section Disable Contract Compilation (Macro Interface)]
 
-This library provides macros that can be used to completely disable compile-time and run-time overhead introduced by contracts but at the cost of manually programming `#ifndef` statements around contract code:
+This library provides macros that can be used to completely disable compile-time and run-time overhead introduced by contracts but at the cost of manually programming `#ifndef BOOST_CONTRACT_NO_...` statements around contract code:
 
 * This library defines [macroref BOOST_CONTRACT_NO_CONSTRUCTORS] when contract checking is disabled for constructors.
 * This library defines [macroref BOOST_CONTRACT_NO_DESTRUCTORS] when contract checking is disabled for destructors.
@@ -396,11 +409,11 @@ This library provides macros that can be used to completely disable compile-time
 * This library defines [macroref BOOST_CONTRACT_NO_OLDS] when old value copies are disabled.
 * This library defines [macroref BOOST_CONTRACT_NO_ALL] when all contracts above and also implementation checks (see [macroref BOOST_CONTRACT_NO_CHECKS]) are disabled.
 
-These macros are not configuration macros and they should not be defined directly by programmers (otherwise this library will generate a compile-time error).
+These macros are not configuration macros and they should not be defined directly by programmers (otherwise this library will generate compile-time errors).
 Instead, these macros are automatically defined by this library when programmers define [macroref BOOST_CONTRACT_NO_PRECONDITIONS], [macroref BOOST_CONTRACT_NO_POSTCONDITIONS], [macroref BOOST_CONTRACT_NO_EXCEPTS], [macroref BOOST_CONTRACT_NO_INVARIANTS] (or [macroref BOOST_CONTRACT_NO_ENTRY_INVARIANTS] and [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS]), and [macroref BOOST_CONTRACT_NO_CHECKS] (see __Disable_Contract_Checking__).
 
-Alternatively, this library provides a macro-based interface [headerref boost/contract_macro.hpp] that can also be used to completely disable compile-time and run-time overhead introduced by contracts.
-For example, the following code shows how to use both the macro interface and the `#ifndef BOOST_CONTRACT_NO_...` statements to completely disable compile-time and run-time overhead for non-member function contracts (see [@../../example/features/ifdef_macro.cpp =ifdef_macro.cpp=] and [@../../example/features/ifdef.cpp =ifdef.cpp=]):
+Alternatively, this library provides a macro-based interface defined in [headerref boost/contract_macro.hpp] that can also be used to completely disable compile-time and run-time overheads introduced by contracts but without the burden of manually writing the `#ifndef BOOST_CONTRACT_NO_...` statements.
+For example, the following code shows how to use both the [headerref boost/contract_macro.hpp] macro interface and the `#ifndef BOOST_CONTRACT_NO_...` statements to completely disable compile-time and run-time overheads for non-member function contracts (see [@../../example/features/ifdef_macro.cpp =ifdef_macro.cpp=] and [@../../example/features/ifdef.cpp =ifdef.cpp=]):
 
 [import ../example/features/ifdef_macro.cpp]
 [import ../example/features/ifdef.cpp]
@@ -411,7 +424,8 @@ For example, the following code shows how to use both the macro interface and th
 
 The same can be done to disable contract code complication for private and protected functions.
 The [macroref BOOST_CONTRACT_OLD_PTR_IF_COPYABLE] macro is provided to handle non-copyable old value types (similar to [classref boost::contract::old_ptr_if_copyable]).
-For constructors, destructors, and public functions instead (see [@../../example/features/ifdef_macro.cpp =ifdef_macro.cpp=] and [@../../example/features/ifdef.cpp =ifdef.cpp=]):
+
+For constructors, destructors, and public functions the [headerref boost/contract_macro.hpp] macro interface and the `#ifndef BOOST_CONTRACT_NO_...` statements can be used as follow (see [@../../example/features/ifdef_macro.cpp =ifdef_macro.cpp=] and [@../../example/features/ifdef.cpp =ifdef.cpp=]):
 
 [table
 [ [Macro Interface] [`#ifndef BOOST_CONTRACT_NO_...` Statements] ]
@@ -420,15 +434,15 @@ For constructors, destructors, and public functions instead (see [@../../example
 
 Static and volatile class invariants can be programmed using [macroref BOOST_CONTRACT_STATIC_INVARIANT] and [macroref BOOST_CONTRACT_INVARIANT_VOLATILE] respectively (these macros expand code equivalent to the `static void BOOST_CONTRACT_STATIC_INVARIANT_FUNC()` and `void BOOST_CONTRACT_INVARIANT_FUNC() const volatile` functions).
 
-The macro interface is usually preferred because more concise and easier to use than programming `#ifndef BOOST_CONTRACT_NO_...` statements by hand.
-However, C++ macros expand on a single line of code and that can make compiler errors less useful when using the macro interface plus all contract assertions within a given set of preconditions, postconditions, exception guarantees, and class invariants will list the same line number in error messages when assertions fail at run-time (but error messages still list the assertion code and that should allow programmers to identify the specific assertion that failed).
-Finally, the macro interface leaves a bit of contract decorations in the code but that should add no measurable compile-time and run-time overhead (specifically, extra [classref boost::contract::virtual_]`*` parameters, calls to [classref boost::contract::constructor_precondition] default constructor which does nothing, [macroref BOOST_CONTRACT_BASE_TYPES] `typedef`s, and [classref boost::contract::access] friendships are left in user code even when contracts are disabled).
+The [headerref boost/contract_macro.hpp] macro interface is usually preferred because more concise and easier to use than programming `#ifndef BOOST_CONTRACT_NO_...` statements by hand.
+However, C++ macros expand on a single line of code and that can make compiler errors less useful when using this macro interface plus all contract assertions within a given set of preconditions, postconditions, exception guarantees, and class invariants will list the same line number in error messages when assertions fail at run-time (but error messages still list the assertion code and that should still allow programmers to identify the specific assertion that failed).
+Finally, the macro interface leaves a bit of contract decorations in the code but that should add no measurable compile-time or run-time overhead (specifically, extra [classref boost::contract::virtual_]`*` parameters, calls to [classref boost::contract::constructor_precondition] default constructor which does nothing, [macroref BOOST_CONTRACT_BASE_TYPES] `typedef`s, and [classref boost::contract::access] friendships are left in user code even when contracts are disabled unless `#ifndef BOOST_CONTRACT_NO_...` statements are used).
 
 Disabling contract as shown in __Disable_Contract_Checking__ leaves the overhead of compiling contract code plus some small run-time overhead due to the initialization of old value pointers (even if those will be all null and no old value will be actually copied), the calls to the contract functions used to initialize [classref boost::contract::check] and [classref boost::contract::constructor_precondition] (even if those calls will be internally optimized by this library to essentially do nothing), etc.
 For truly performance critical code for which even such small run-time overhead might not be acceptable, the macro interface (or the `#ifndef BOOST_CONTRACT_NO_...` statements) can be used to completely disable compile-time and run-time overheads of contracts.
 However, for such performance critical code even the overhead of checking simple preconditions might be too much so it might be best to not program contracts at all.
 
-Usually, if the overhead of checking preconditions and other assertions is already considered acceptable for an application then the compile-time overhead of contracts should not represent an issue and it should be sufficient to be able to disable contract checking at run-time as indicated in __Disable_Contract_Checking__ (without a real need to use the macro interface or the `#ifndef BOOST_CONTRACT_NO_...` statements in most cases).
+Usually, if the overhead of checking preconditions and other assertions is already considered acceptable for an application then the compile-time overhead of contracts should not represent an issue and it should be sufficient to disable contract checking at run-time as indicated in __Disable_Contract_Checking__ (without a real need to use the [headerref boost/contract_macro.hpp] macro interface or the `#ifndef BOOST_CONTRACT_NO_...` statements in most cases).
 
 [endsect]
 
@@ -440,16 +454,17 @@ This is not ideal (even if contracts programmed using this library will always a
 
 In some cases, it might be desirable to completely separate the contract code from the function implementation code.
 For example, this could be necessary for software that ships only header files and compiled object files to its users.
-If contracts are programmed in function definitions that are compiled in the object files, users will not be able to see the contract code to understand semantics and usage of the functions (again, this might not be a real problem in practice for example if contracts are already somehow extracted from the source code by some toll and presented as part of the documentation of the shipped software).
+If contracts are programmed in function definitions that are compiled in the object files, users will not be able to see the contract code to understand semantics and usage of the functions (again, this might not be a real problem in practice for example if contracts are already somehow extracted from the source code by some tool and presented as part of the documentation of the shipped software).
 
-In any case, when it is truly important to separate contracts from function implementation code, function implementations can be programmed in extra /body functions/ (e.g., named `..._body`) that are compiled in object files.
-Function definitions that remain in header files instead will contain just contract code followed by calls the extra body functions.
-This technique allows to keep the contract code in header files while separating the implementation code to object files.
-However, it adds the overhead of manually programming an extra function declaration for the body function (plus the limitation that constructor member initialization lists must be programmed in header files because that is where constructors need to be defined to list constructor contract code).
+In any case, when it is truly important to separate contracts from function implementation code, function implementations can be programmed in extra /body functions/ (here named `..._body`, but any other naming scheme could be used) that are compiled in object files.
+Function definitions that remain in header files instead will contain just contract code followed by calls to the extra body functions.
+This technique allows to keep the contract code in header files while separating the implementation code to source and object files.
+However, this adds the overhead of manually programming an extra function declaration for each body function (plus the limitation that constructor member initialization lists must be programmed in header files because that is where constructors need to be defined to list constructor contract code).
 [footnote
 When used as default parameter values, lambda functions allow to program code statements within function declarations.
-However, these lambadas cannot be effectively used to program contracts because the C++11 standard does not allow them to capture any variable (it would be not at all obvious how to correctly define the semantics of such captures).
-For example, the following code does not compile:
+However, these lambadas cannot be effectively used to program contracts in function declarations instead of definitions.
+That is because the C++11 standard does not allow lambdas in function declarations to capture any variable (for the good reason that it is not at all obvious how to correctly define the semantics of such captures).
+For example, the following code is not valid C++ and it does not compile:
 ``
 // Specifications (in declaration).
 int inc(int& x,
@@ -493,7 +508,7 @@ Instead, the function bodies are implemented in a separate source file (see [@..
 [import ../example/features/separate_body.cpp]
 [separate_body_cpp]
 
-The same technique can be used for non-member, private, protectee functions, etc.
+The same technique can be used for non-member, private, and protected functions, etc.
 
 [note
 When contracts are programmed only in =.cpp= files and also all this library headers are `#include`d only from =.cpp= files, then these =.cpp= files can be compiled disabling specific contract checking (for example, [macroref BOOST_CONTRACT_NO_POSTCONDITIONS], [macroref BOOST_CONTRACT_NO_EXCEPTS], and [macroref BOOST_CONTRACT_NO_EXIT_INVARIANTS], see __Disable_Contract_Checking__).
@@ -512,24 +527,26 @@ This section shows how to use this library without C++11 lambda functions.
 This has some advantages:
 
 * It allows to use this library on compilers that do not support C++11 lambda functions (essentially most C++03 compilers with adequate support for SFINAE can be used in that case, see __No_Macros__ to also avoid using variadic macros).
-* Contract functions (i.e., the `..._precondition`, `..._old`, and `..._postcondition` functions in the example below) can be programmed to fully enforce constant-correctness and other contract requirements at compile-time (see __Constant_Correctness__).
-[footnote
-If C++ allowed lambda functions to capture variables by constant reference (for example using the syntax `[const&] { ... }` and `[const& `[^['variable-name]]`] { ... }`, see [@https://groups.google.com/a/isocpp.org/forum/#!topic/std-proposals/0UKQw9eo3N0]) also lambdas could be used to program contract functors that fully enforce __Constant_Correctness__ at compile-time.
-Note that C++11 lambdas allow to capture variables by value (using `[=] { ... }` and `[`[^['variable-name]]`] { ... }`), these value captures are `const` (unless the lambda is explicitly declared `mutable`) but they are not suitable to program postconditions and exception guarantees using this library (because those require capturing by reference, see __Postconditions__ and __Exception_Guarantees__), plus they introduce a copy of the captured value that might be too expensive in general and therefore not suitable for preconditions either.
-]
-* Code of the contract functions is separated from function body implementations (see __Separate_Body_Implementation__).
 [footnote
 Alternatively, on compilers that do not support C++11 lambda functions, [@http://www.boost.org/doc/libs/release/libs/local_function/doc/html/index.html Boost.LocalFunction] could be used to program the contract functors still within the function definitions (for example, see [@../../example/features/no_lambdas_local_func.cpp =no_lambda_local_func.cpp=]).
 In general, such a code is less verbose than the example shown in this section that uses contract functions programmed outside of the original function definitions (about 30% less lines of code) but the contract code is hard to read.
 Other libraries could also be used to program the contract functors without C++11 lambda functions (Boost.Lambda, Boost.Fusion, etc.) but again all these techniques will result in contract code either more verbose, or harder to read and maintain than the code that uses C++11 lambda functions.
 ]
+* Contract functions (i.e., the `..._precondition`, `..._old`, and `..._postcondition` functions in the example below) can be programmed to fully enforce constant-correctness and other contract requirements at compile-time (see __Constant_Correctness__).
+[footnote
+If C++ allowed lambda functions to capture variables by constant reference (for example allowing a syntax like this `[const&] { ... }` and `[const& `[^['variable-name]]`] { ... }`, see [@https://groups.google.com/a/isocpp.org/forum/#!topic/std-proposals/0UKQw9eo3N0]) also lambdas could be used to program contract functors that fully enforce __Constant_Correctness__ at compile-time.
+Note that C++11 lambdas allow to capture variables by value (using `[=] { ... }` and `[`[^['variable-name]]`] { ... }`) and these value captures are `const` (unless the lambda is explicitly declared `mutable`) but they are not suitable to program postconditions and exception guarantees using this library (because those require capturing by reference, see __Postconditions__ and __Exception_Guarantees__), plus they introduce a copy of the captured value that might be too expensive in general and therefore not suitable for preconditions either.
+]
+* Code of the contract functions is separated from function body implementations (see __Separate_Body_Implementation__).
 
 However, not using C++11 lambda functions comes at the significant cost of having to manually program the extra contract functions and related boiler-plate code.
-For example (see [@../../example/features/no_lambdas.hpp =no_lambdas.hpp=] and [@../../example/features/no_lambdas.cpp =no_lambdas.cpp=]):
+For example, the header file (see [@../../example/features/no_lambdas.hpp =no_lambdas.hpp=]):
 
 [import ../example/features/no_lambdas.hpp]
 [no_lambdas_hpp]
 
+And, the source file (see [@../../example/features/no_lambdas.cpp =no_lambdas.cpp=]):
+
 [import ../example/features/no_lambdas.cpp]
 [no_lambdas_cpp]
 
@@ -539,8 +556,8 @@ If programmers also want to fully enforce all contract programming constant-corr
 * Postcondition functions (i.e., the `..._postcondition` functions in the example above) should take their arguments by `const&`, and when they are member functions they should be either `static` or `const` functions.
 * Similarly, exception guarantee functions (not shown in the example above) should take their arguments by `const&`, and when they are member functions they should be either `static` or `const` functions.
 * Old value functions (i.e., the `..._old` functions in the example above) should take their arguments by `const&` a part from old value pointers that should be taken by `&` (so only old value pointers can be modified), and when they are member functions they should be either `static` or `const` functions.
-* Constructor precondition, old value, and exception guarantee functions should be `static` (because there is no valid object `this` if the constructor body does not run successfully, see __Constructor_Calls__).
-* Destructor postcondition functions should be `static` (because there is no valid object `this` after the destructor body runs successfully, but exception guarantee functions do not have to be `static` since the object `this` is still valid because the destructor body did not run successfully, see __Destructor_Calls__).
+* For constructors: Precondition, old value, and exception guarantee functions should be `static` (because there is no valid object `this` if the constructor body does not run successfully, see __Constructor_Calls__).
+* For destructors: Postcondition functions should be `static` (because there is no valid object `this` after the destructor body runs successfully, but exception guarantee functions do not have to be `static` since the object `this` is still valid because the destructor body did not run successfully, see __Destructor_Calls__).
 
 Note that the extra contract functions also allow to keep the contract code in the header file while all function bodies are implemented in a separate source file (including the constructor member initialization list, that could not be done with the techniques shown in __Separate_Body_Implementation__).
 [footnote
@@ -549,7 +566,7 @@ As always with `bind`, `cref` and `ref` must be used to bind arguments by `const
 ]
 Also note that the contract functions can always be declared `private` if programmers need to exactly control the public members of the class (this was not done in this example only for brevity).
 
-The authors think this library is most useful when used together with C++11 lambda functions.
+The authors think this library is most useful when used together with C++11 lambda functions (because of the large amount of boiler-plate code required when C++11 lambdas are not used as also shown by the example above).
 
 [endsect]
 
@@ -576,7 +593,7 @@ The [macroref BOOST_CONTRACT_MAX_ARGS] macro is named after `BOOST_FUNCTION_MAX_
 These macro cannot be programmed manually but they are not variadic macros (so programmers should be able to use them on any C++ compiler with a sound support for SFINAE).
 [footnote
 *Rationale:*
-These macros expand SFINAE-based introspection templates that are too complex to be programmed manually by users (that remains the case even if C++14 generic lambdas were to be used here).
+These macros expand to SFINAE-based introspection template code that are too complex to be programmed manually by users (that remains the case even if C++14 generic lambdas were to be used here).
 On a related note, in theory using C++14 generic lambdas, the [macroref BOOST_CONTRACT_OVERRIDE] macro could be re-implemented in a way that can be expanded at function scope, instead of class scope (but there is not really a need to do that).
 ]
 The [macroref BOOST_CONTRACT_OVERRIDES] macro is a variadic macro instead but programmes can manually repeat the non-variadic macro [macroref BOOST_CONTRACT_OVERRIDE] for each overriding public function name on compilers that do not support variadic macros.
@@ -585,38 +602,39 @@ The [macroref BOOST_CONTRACT_OVERRIDES] macro is a variadic macro instead but pr
 
 As shown in __Preconditions__, __Postconditions__, __Exception_Guarantees__, __Class_Invariants__, etc. this library provides the [macroref BOOST_CONTRACT_ASSERT] macro to assert contract conditions.
 This is not a variadic macro and programmers should be able to use it on all C++ compilers.
-In any case, the invocation `BOOST_CONTRACT_ASSERT(cond)` expands to code equivalent to the following:
+In any case, the invocation `BOOST_CONTRACT_ASSERT(`[^['cond]]`)` simply expands to code equivalent to the following:
 [footnote
 *Rationale:*
 There is no need for the code expanded by [macroref BOOST_CONTRACT_ASSERT] to also use C++11 `__func__`.
-That is because `__func__` will always expand to the name of `operator()` of the functor used to program the contract assertions (e.g., of the lambda function) and it will not expand to the name of the actual function specifying the contract.
+That is because `__func__` will always expand to the name `operator()` of the functor used to program the contract assertions (e.g., the internal name the compiler assigns to lambda functions) and it will not expand to the name of the actual function enclosing the contract declaration.
 ]
 
-    if(!(cond)) {
+    if(!(``[^['cond]]``)) {
         throw boost::contract::assertion_failure(__FILE__, __LINE__,
-                BOOST_PP_STRINGIZE(cond));
+                BOOST_PP_STRINGIZE(``[^['cond]]``));
     }
 
 In fact, this library considers any exception thrown from within preconditions, postconditions, exception guarantees, and class invariants as a contract failure and reports it calling the related contract failure handler ([funcref boost::contract::precondition_failure], etc.).
 If there is a need for it, programmers can always program contract assertions that throw specific user-defined exceptions as follow (see __Throw_on_Failures__):
 
-    if(!cond) throw exception_object;
+    if(!``[^['cond]]``) throw ``[^['exception-object]]``;
 
 However, using [macroref BOOST_CONTRACT_ASSERT] is convenient because it always allows this library to show an informative message in case of assertion failure containing the assertion code, file name, line number, etc.
 
-The [macroref BOOST_CONTRACT_ASSERT_AUDIT] and [macroref BOOST_CONTRACT_ASSERT_AXIOM] macros are not variadic macros and programmers should be able to use them on all C++ compilers.
-Their implementations are equivalent to the following:
+As shown in __Assertion_Levels__, this library pre-defines [macroref BOOST_CONTRACT_ASSERT_AUDIT] and [macroref BOOST_CONTRACT_ASSERT_AXIOM] assertion levels.
+These macros are not variadic macros and programmers should be able to use them on all C++ compilers.
+In any case, their implementations are equivalent to the following:
 
     #ifdef BOOST_CONTRACT_AUDITS
-        #define BOOST_CONTRACT_ASSERT_AUDIT(cond) \
-            BOOST_CONTRACT_ASSERT(cond)
+        #define BOOST_CONTRACT_ASSERT_AUDIT(``[^['cond]]``) \
+            BOOST_CONTRACT_ASSERT(``[^['cond]]``)
     #else
-        #define BOOST_CONTRACT_ASSERT_AUDIT(cond) \
-            BOOST_CONTRACT_ASSERT(true || (cond))
+        #define BOOST_CONTRACT_ASSERT_AUDIT(``[^['cond]]``) \
+            BOOST_CONTRACT_ASSERT(true || (``[^['cond]]``))
     #endif
         
-    #define BOOST_CONTRACT_ASSERT_AXIOM(cond) \
-        BOOST_CONTRACT_ASSERT(true || (cond))
+    #define BOOST_CONTRACT_ASSERT_AXIOM(``[^['cond]]``) \
+        BOOST_CONTRACT_ASSERT(true || (``[^['cond]]``))
 
 [heading Base Types (Variadic)]
 
@@ -641,7 +659,7 @@ For example (see [@../../example/features/old_no_macro.cpp =old_no_macro.cpp=]):
 [import ../example/features/old_no_macro.cpp]
 [old_no_macro]
 
-The ternary operator `boost::contract::copy_old(v) ? size() : boost::contract::null_old()` must be used here to avoid evaluating and copying the old value expression `size()` when [funcref boost::contract::copy_old] returns `false` (because old values are not being copied when postcondition and exception guarantees checking is disabled at run-time, an overridden virtual function call is not checking postconditions or exception guarantees yet, etc.).
+The ternary operator `boost::contract::copy_old(v) ? size() : boost::contract::null_old()` must be used here to avoid evaluating and copying the old value expression `size()` when [funcref boost::contract::copy_old] returns `false` (because old values are not being copied when postcondition and exception guarantee checking is disabled at run-time, an overridden virtual function call is not checking postconditions or exception guarantees yet, etc.).
 The enclosing [funcref boost::contract::make_old] copies the old value expression and creates an old value pointer.
 Otherwise, [funcref boost::contract::null_old] indicates that a null old value pointer should be created.