From: Gary Powell (powellg_at_[hidden])
Date: 2002-02-18 12:22:07


>>------------------------------------------------
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);

// not even close to real code:

  template<class ExceptionType>
  class ErrorTraits1 {
public:
   typedef ExceptionType type;
};

  ErrorTraits< foo >::type;

  -Gary-