This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch] Use variadic templates for tr1::is_function



On Apr 10, 2007, at 2:02 PM, Paolo Carlini wrote:


Doug Gregor wrote:

That's not a valid use of result_of.

result_of<F(A1, A2, ..., AN)>::type is the return type when calling a function object of type F with arguments a1, a2, ..., aN of types A1, A2, ..., AN, respectively. In your example use, F is "int", which is not a valid function object.

Humm, ok, thanks, I'm still trying to digest the whole idea...


Now, you could do something like:

result_of<int(double)(double)>::type

That would be int.

But, unless I'm doing some stupid mistake, it doesn't compile...

I'm terrible at declarator syntax :)


Anyway, this works fine:

typedef int (*F)(double); // F is the type of a function object. It happens to be a function pointer

std::result_of<F(double)>::type // resolves to "int"

	Cheers,
	Doug


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]