$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Gary Powell (powellg_at_[hidden])
Date: 2002-02-18 14:18:27
>>------------------------------------------------
What else should be on the list? For example, is there language support that
would assist type traits?
<<------------------------------------------------
I'd like be able to query a function for its exception handling information.
int foo() throw (exceptionType);
>-------------------------------------------------
One other thought and that is the informational type could be a typelist,
instead of trying to specialize for each number of exception types.
std::typelist Tlist = exception_types<foo>::type;
>>----------------------------------------------------
More fuel for auto:
auto f = bind(MyClass::mfFoo, _1, _2 * sin(2*PI + _3);
Goodluck trying to write the type of "f".
-Gary-