diff --git a/index.htm b/index.htm index 7ea7c2f..913cbb9 100644 --- a/index.htm +++ b/index.htm @@ -32,6 +32,7 @@ first.
Relationships Between Types Transformations Between Types Synthesizing Types +Function Traits Compiler Support Information Type traits headers Example Code @@ -812,6 +813,53 @@ properties. + The ::boost::function_traits
class template extracts information from function types.
+
+
+ | Expression + |
+ Description + |
+ Reference + |
+ Compiler requirements + |
+ + |
+ | ::boost::function_traits<F>::arity |
+ Determine the arity of the function type F . |
+ + | P | ++ |
+ | ::boost::function_traits<F>::result_type |
+ The type returned by function type F . |
+ + | P | ++ |
+ | ::boost::function_traits<F>::argN_type |
+ The N th argument type of function type F , where 1<=N<= arity of F . |
+ + | P | ++ |
The legends used in the tables above have the following