From eb14b70c9cd3cb1e693089b65f627540069df520 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 13 Mar 2003 00:08:34 +0000 Subject: [PATCH] Move away from attributes, toward elements [SVN r17869] --- doc/reference.xml | 41 ++++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/doc/reference.xml b/doc/reference.xml index f20c073..59fe5e9 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -100,14 +100,14 @@ A set of generalized function pointers that can be used for callbacks or wrapping function objects. - - Class template functionN is actually a - family of related classes function0, - function1, etc., up to some - implementation-defined maximum. In this context, - N refers to the number of - parameters. - + + Class template functionN is + actually a family of related classes function0, function1, etc., up to some + implementation-defined maximum. In this context, N + refers to the number of parameters. + R Allocator @@ -268,27 +268,30 @@ functionN<R, T1, T2, ..., TN, Allocator> A generalized function pointer that can be used for callbacks or wrapping function objects. - - Class template function is a thin wrapper - around the numbered class templates + Class template function is a thin + wrapper around the numbered class templates function0, function1, etc. It accepts a function type with N arguments and will will derive from - functionN instantiated with the arguments it receives. + functionN instantiated with the arguments + it receives. - The semantics of all operations in class template - function are equivalent to that of the underlying - functionN object, although additional member - functions are required to allow proper copy construction and - copy assignment of function objects. - + The semantics of all operations in class template + function are equivalent to that of the + underlying functionN object, although + additional member functions are required to allow proper copy + construction and copy assignment of function objects. + R Allocator