diff --git a/doc/reference.html b/doc/reference.html index b4b2a68..a245198 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -54,7 +54,6 @@ void clear(); // Invocation - result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN); result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const; }; @@ -180,10 +179,10 @@
empty()
. result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN);
+
result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const;
!empty()
.const
or volatile
qualified.
+ const
or volatile
qualified.
policy_type policy;
policy.precall(this);
result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const;
-
!empty()
.const
qualified but not volatile
qualified.
- policy_type policy;
policy.precall(this);
const-target(a1, a2, ..., aN);
policy.postcall(this);
function
Class template function
is a thin wrapper around the numbered class templates function0
, function1
, etc. It accepts up to MAX_ARGS arguments, but when passed N arguments it will derive from functionN
specialized with the arguments it receives.
@@ -247,7 +233,7 @@