diff --git a/doc/reference.html b/doc/reference.html index b6ecf62..6cdd3ff 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -148,7 +148,6 @@ namespace boost {
f
targets a copy of g
's target, if it has one, or is empty if g.empty()
. The mixin for f
is assigned the value of the mixin for g
.*this
. template<typename F> functionN& operator=(const F& g);
@@ -156,7 +155,6 @@ namespace boost {
g
is a compatible function object.f
targets a copy of g
if g
is nonempty, or f.empty()
if g
is empty.*this
.g
is a reference-to-const
because it is a portable, efficient, and concise way to accept any function object or function pointer. In the case of a function pointer, the type of g
is reference-to-const
pointer-to-function.