diff --git a/doc/facade-and-adaptor.html b/doc/facade-and-adaptor.html index caa0d7f..7d05938 100755 --- a/doc/facade-and-adaptor.html +++ b/doc/facade-and-adaptor.html @@ -130,8 +130,8 @@ by adapting other iterators.
The UnaryFunction must be Assignable, Copy Constructible, and the -expression f(x) must be valid, where f is an object of type -UnaryFunction and x is an object of a type accepted by f. -The resulting function_output_iterator is a model of the Writable -and Incrementable Iterator concepts.
+The UnaryFunction must be Assignable, Copy Constructible.
+function_output_iterator is a model of the Writable and +Incrementable Iterator concepts.
explicit function_output_iterator(const UnaryFunction& f = UnaryFunction());
Returns: | An instance of function_output_iterator with -f stored as a data member. | +m_f constructed from f.
---|
output_proxy operator*();
+/* implementation defined */ operator*();
Returns: | An instance of output_proxy constructed with -a copy of the unary function f. | +
---|---|
Returns: | An object r of implementation defined type +such that if f(t) is a valid expression for +some object t then r = t is a valid expression. +r = t will have the same effect as f(t). |
output_proxy(UnaryFunction& f);
-Returns: | An instance of output_proxy with f stored as -a data member. | -
---|
template <class T> output_proxy& operator=(const T& value);
-Effects: | -m_f(value); -return *this; -- |
-
---|