Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66026 - sandbox/itl/libs/itl/doc
From: afojgo_at_[hidden]
Date: 2010-10-16 14:43:55


Author: jofaber
Date: 2010-10-16 14:43:55 EDT (Sat, 16 Oct 2010)
New Revision: 66026
URL: http://svn.boost.org/trac/boost/changeset/66026

Log:
Updated documentation: Modified functions_cons_copy_dest.qbk.
Text files modified:
   sandbox/itl/libs/itl/doc/functions_cons_copy_dest.qbk | 16 ++++++++--------
   1 files changed, 8 insertions(+), 8 deletions(-)

Modified: sandbox/itl/libs/itl/doc/functions_cons_copy_dest.qbk
==============================================================================
--- sandbox/itl/libs/itl/doc/functions_cons_copy_dest.qbk (original)
+++ sandbox/itl/libs/itl/doc/functions_cons_copy_dest.qbk 2010-10-16 14:43:55 EDT (Sat, 16 Oct 2010)
@@ -56,15 +56,15 @@
 m | m m M | M M M
 ``
 
-For an object of type `T` and an argument `src` of type `P` let
+For an object `y` of type `T` and an argument `x` of type `P` let
 ``
-n = this->iterative_size();
-m = src.iterative_size();
+n = iterative_size(y);
+m = iterative_size(x);
 ``
 in the following tables.
 
 [table Time Complexity for overloaded constructors on element containers
-[[`T(const P& src)`][__ch_dom_t__][__ch_dom_mp_t__][__ch_itv_sets__][__ch_itv_maps__]]
+[[`T(const P& x)`][__ch_dom_t__][__ch_dom_mp_t__][__ch_itv_sets__][__ch_itv_maps__]]
 [[__icl_set__] [__Olgn__] [] [__Om__] [] ]
 [[__icl_map__] [] [__Olgn__] [] [__Om__] ]
 ]
@@ -73,14 +73,14 @@
 is given by this table.
 
 [table Time Complexity for overloaded constructors on interval containers
-[[`T(const P& src)`] [__ch_dom_t__][__ch_itv_t__][__ch_dom_mp_t__][__ch_itv_mp_t__][__ch_itv_sets__][__ch_itv_maps__]]
+[[`T(const P& x)`] [__ch_dom_t__][__ch_itv_t__][__ch_dom_mp_t__][__ch_itv_mp_t__][__ch_itv_sets__][__ch_itv_maps__]]
 [[interval_sets] [__O1__] [__O1__][] [] [__Om__] [] ]
 [[interval_maps] [] [] [__O1__][__O1__][] [__Om__] ]
 ]
 
 ``
 // overload tables for assignment
-T& operator = (const P& src)
+T& operator = (const P& x)
 
 interval containers:
 T \ P | S M
@@ -89,9 +89,9 @@
 M | M
 ``
 
-The assignment `T& operator = (const P& src)` is overloaded within interval containers.
+The assignment `T& operator = (const P& x)` is overloaded within interval containers.
 For all type combinations we have ['*linear time complexity*]
-in the maximum of the `iterative_size` of `*this` and `src`.
+in the maximum of the `iterative_size` of `y` and `x`.
 
 
 ['*Back to section . . .*]


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk