Recently I was working a friend who wanted to make C++ more Haskell-y, and we wanted a function that's basically like this:
auto sum(auto a, auto b) {
return a + b;
}
Apparently I can't use auto as a parameter type, so I changed it to this:
template<class A, class B>
auto sum(A a, B b) {
return a + b;
}
But that doesn't work either. What we eventually realized we need this:
template<class A, class B>
auto sum(A a, B b) -> decltype(a + b) {
return a + b;
}
So my question is, what's the point? Isn't decltype just repeating information, since the compiler can just look at the return statement?
I considered that maybe it's needed so we can just include a header file:
template<class A, class B>
auto sum(A a, B b) -> decltype(a + b);
... but we can't use templates like that anyway.
The other thing I considered was that it might be easier for the compiler, but it seems like it would actually be harder.
Case 1: With decltype
- Figure out the type of the
decltypestatement - Figure out the types of any return values
- See if they match
Case 2: Without decltype
- Figure out the types of any return values
- See if they match
So with those things in mind, what's the point of the trailing return type with decltype?
decltypeand the question doesn't touch on any of the others. – pmr Sep 28 '11 at 21:35auto foo(auto x, auto y) { return x + y;}would be nice, and it's certainly possible, but it's just as doable with the extra syntax, just more annoying; the annoyance is easier to deal with than new rules. That said, it is extremely unfortunate they didn't elaborate on deducing return types for things like lambdas. – GManNickG Sep 28 '11 at 23:02#define func(sig) auto sig -> decltype(__VA_ARGS__) { return __VA_ARGS__; }and then saytemplate<class A, class B> func(sum(A a, B b), a + b), but that would be a bit excessive. – Jon Purdy Sep 29 '11 at 2:16