From ab1228c279431878df198861bafc6a39ce75bd0e Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 6 Sep 2002 18:47:32 +0000 Subject: [PATCH] reference.html: - Document argI_type typedefs - Document arity ICE [SVN r15183] --- doc/reference.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/reference.html b/doc/reference.html index e36a3c2..db9e205 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -42,6 +42,15 @@ typedef Arg1 first_argument_type; // If N == 2 typedef Arg2 second_argument_type; // If N == 2 + typedef Arg1 arg1_type; + typedef Arg2 arg2_type; + . + . + . + typedef ArgN argN_type; + + enum { arity = N }; + // Construction explicit functionN(const Mixin& = Mixin()); functionN(const functionN&); @@ -283,7 +292,7 @@
Douglas Gregor
-Last modified: Fri Jul 19 16:40:00 EDT 2002 +Last modified: Fri Sep 6 14:46:50 EDT 2002