decltype is a C++11 keyword that can be used to find the type of an expression.

learn more… | top users | synonyms

6
votes
1answer
75 views

variadic templates sum operation left associative

The code below works for the: goal for the left associative sum operation: sum(1,2,3,4); However, it won't work correctly for sum(1,2,3,4,5) or sum(1,2,3,4,5,...). Anything with more than 4 ...
4
votes
1answer
60 views

explain this code with decltype in it

([] () -> decltype(std::cout << "Hello") { return std::cout << "Hello"; }()) << ", world!"; prints Hello, world!. I simply don't understand what's going on here. Can ...
1
vote
2answers
66 views

Decltype and templates - any way to make decltype machinery less complicated?

I was playing around with implementing group_by method in a generic way and I have maybe implemented it(except it doesnt work for C arrays), but still code looks ugly to me... Is there easier way to ...
3
votes
1answer
95 views

decltype and scope resolution operator inside a function template

Apparently, the following code does not compile on gcc 4.7: #include <vector> struct foo { std::vector<int> x; template<typename T> void bar(T) { ...
2
votes
2answers
127 views

templates, decltype and non-classtypes

I have a function definition like so template <typename T> auto print(T t) -> decltype(t.print()) { return t.print(); } The idea is that the argument must be of type T and must have ...
0
votes
1answer
102 views

C++11 - What is wrong with this use of decltype function pointer?

While trying to implement a Delegate-class using variadic templates I ran into a problem I'm unable to solve: /// -------------------------------------- /// @thanks God /// Steve ...
3
votes
1answer
169 views

what is -> in c++ in a function declaration [duplicate]

In the Wikipedia article on decltype http://en.wikipedia.org/wiki/Decltype I came across this example: int& foo(int& i); float foo(float& f); template <class T> auto ...
0
votes
1answer
77 views

VS2012 - Decltype as template parameter in trailing return type

The following code works on gcc and even VC11 Nov CTP, but fails to compile with VC11 RTM. template<typename T> struct A { typedef typename T::Type BreakMe; T x; }; struct B { typedef ...
4
votes
2answers
259 views

What is decltype with two arguments?

Edit, in order to avoid confusion: decltype does not accept two arguments. See answers. The following two structs can be used to check for the existance of a member function on a type T during ...
1
vote
2answers
111 views

decltype and lvalue expression

according to http://en.cppreference.com/w/cpp/language/decltype struct A { double x; }; const A* a = new A(); decltype( a->x ) x3; match 1 case, i.e: If the argument is either the ...
7
votes
3answers
336 views

Does `decltype` give me an object's static type, or its runtime type?

[C++11: 7.1.6.2/4]: The type denoted by decltype(e) is defined as follows: if e is an unparenthesized id-expression or an unparenthesized class member access (5.2.5), decltype(e) is the ...
3
votes
2answers
230 views

How to declare the value of an iterator through decltype

In C++98, I typically use the following to declare a variable in an iterator's value type: typename std::iterator_traits<Iterator>::value_type value; In C++11 we have decltype and I had ...
3
votes
2answers
78 views

shared_ptr initialization

A member is defined as std::shared_ptr<std::array<std::string, 6> > exit_to; which points to additional data shared among others. When try to initiate the pointer "exit_to". The correct ...
4
votes
1answer
203 views

Decltype and friend functions in Visual Studio vs G++

I was writing some C++ code to do vector math. It is essential just a thin wrapper around a std::array instance. I wanted to overload the non-member begin() function to return an iterator to the ...
6
votes
1answer
246 views

Why does decltype(*this) not return the correct type?

The following code was compiled with VC++ Nov 2012 CTP. But the compiler gave a warning. I just wonder whether this is a bug of VC++ Nov 2012 CTP. struct A { int n; A(int n) : n(n) ...
25
votes
1answer
460 views

What is the result of decltype(“Hello”)?

I'm getting unexpected results from all compilers on which I tried the following (GCC 4.7.2, GCC 4.8.0 beta, ICC 13.0.1, Clang 3.2, VC10): #include <type_traits> int main() { // This will ...
1
vote
3answers
117 views

How to implement is_polymorphic_functor?

I'm trying to implement is_polymorphic_functor meta-function to get the following results: //non-polymorphic functor template<typename T> struct X { void operator()(T); }; //polymorphic ...
2
votes
1answer
91 views

Using decltype to write copy and move functions

My code has a couple instances where functions react only slightly differently when encountering a T&& or const T&, however the functions themselves are quite long (note that T is just ...
2
votes
2answers
91 views

decltype throwing errors on template methods that aren't generating code

I'm trying to create a sort of wrapper class that forwards all operators to its contained object, to try and make it able to "pretend" to be the contained object. The code I'd like to write looks ...
0
votes
0answers
32 views

decltype::static_member C++ [duplicate]

As the title suggests, I was trying to use decltype to get the type of a template. The way i tried this was: template<typename T> class List { .... public: typedef T type; .... }; ...
8
votes
2answers
192 views

Is declval<T>() the same as (*(T*)nullptr)?

Is declval<T>() just a replacement for the old trick of (*(T*)NULL) to get an instance of T in a decltype without needing to worry about T's constructor? Here is some sample code: struct A {}; ...
0
votes
2answers
100 views

Compile issue with tuples and variadic templates

I'm having an issue with a seemingly complicated problem. I'm trying to make an iterator class for a zip function (trying to mimic python's generator zip function). I have the entire class at ...
4
votes
2answers
189 views

Is &decltype(object)::memfn a misuse?

I had some class like this: class Test { public: bool bar(int &i, char c) // some arguments are passed by ref, some are by value {/*...*/} bool foo(/*...*/) {} }; And I don't ...
5
votes
1answer
204 views

Passing an element to a lambda by reference-to-const

Inside an algorithm, I want to create a lambda that accepts an element by reference-to-const: template<typename Iterator> void solve_world_hunger(Iterator it) { auto lambda = [](const ...
4
votes
2answers
218 views

C++11 compiler error when using decltype(var) followed by internal type of “var”

I'm using Visual C++ 2010, and here's my code snippet: std::set<int> s; decltype(s)::value_type param = 0; I got the following error message, anyone can help me? > error C2039: ...
6
votes
2answers
191 views

Difference between decltype and typeof?

Two question regarding decltype and typeof: Is there any difference between the decltype and typeof operators? Does typeof become obsolete in C++11?
6
votes
2answers
174 views

Significance of parentheses in decltype((c))?

I was reading this article on Wikipedia regarding C++11 Type Inference feature. There is an example and I quote: #include <vector> int main() { const std::vector<int> v(1); ...
2
votes
2answers
166 views

C++ decltype fails to deduce type

Is decltype really buggy in Visual Studio 2012 or is it actually supposed to be this hard to use? Example: namespace ptl { struct Test { Test(float ){} }; template<class ...
39
votes
1answer
2k views

What does the 'void()' in 'auto f(params) -> decltype(…, void())' do?

I found code here that looked something like this: auto f(T& t, size_t n) -> decltype(t.reserve(n), void()) { .. } In all the documentation I read I was told that decltype is signed as: ...
3
votes
3answers
161 views

Class member visibility in member function declaration signature

Why does this work: template <typename A> struct S { A a; template <typename B> auto f(B b) -> decltype(a.f(b)) { } }; But this does not (a and f swapped ...
0
votes
4answers
112 views

Forwarding the decltype detection - C++ 11

I would like to use decltype to virtually bind the return type of a method to a type of a variable like that #include <iostream> decltype(a) foo() // my point { return ...
2
votes
2answers
74 views

What is decltype(*it) for BidirectionalIterator?

Is decltype(*it) the value type of the iterator, or an lvalue reference to that, or something else? I think it is an lvalue reference, because *it is an lvalue, but I'm not sure. Note: In my case, ...
3
votes
2answers
88 views

&decltype(obj)::member not working

Why is does this not work (Visual C++ 2012 Update 1), and what is the proper way to fix it? #include <boost/lambda/bind.hpp> namespace bll = boost::lambda; struct Adder { int m; ...
2
votes
3answers
143 views

Detecting function parameter type

I went about with the following code to detect the long argument to a given function. So, given: int f(int *) { return 0; } I want to extract int *. Here is my attempt: template<class T, ...
4
votes
2answers
185 views

Use decltype and std::function with lambda

This works ... auto x = 4; typedef decltype(x) x_t; x_t y = 5; ... so why doesn't this? int j = 4; auto func = [&] (int i) { cout << "Hello: i=" << i << " j=" << j ...
2
votes
3answers
147 views

Why is decltype necessary in an “auto returning” function?

Consider this code : #include <iostream> #include <typeinfo> using namespace std; template<typename T1, typename T2> auto add(T1 l, T2 r) -> decltype(l + r){ return l + r; ...
2
votes
1answer
270 views

basic boost spirit semantic action doesn't compile

I am trying to add a greater than operator > to a ast: the code is 95% identical to the code in the docs. Two points of interest below A block of code where I'm trying to write support for ...
2
votes
2answers
50 views

decltype on type expressions

Is there any way to avoid the dummy functions in the following example? template<class T1, class T2> struct A { static T1 T1_ (); static T2 T2_ (); typedef decltype (T1_ () + T2_ ...
5
votes
1answer
380 views

Intel C++ Compiler is extremely slow to compile recursive decltype returns

I'm writing a template for expressions parametrised by an arbitrary number of char labels. Given an argument list, a factory function returns an expression of different types depending on whether ...
2
votes
2answers
187 views

Can C++11 decltype be used to create a typedef for function pointer from an existing function?

Given struct A { int foo(double a, std::string& b) const; }; I can create a member function pointer like this: typedef int (A::*PFN_FOO)(double, std::string&) const; Easy enough, ...
9
votes
1answer
114 views

Can decltype declare an r-value?

// Compiled by Visual Studio 2012 struct A { bool operator ==(const A& other) const { for (decltype(this->n) i = 0; i < n; ++i) // OK {} return true; } ...
2
votes
1answer
87 views

Do decltype(c) e; and decltype((c)) f; declare different types? [duplicate]

Possible Duplicate: decltype and parenthesis I found this on wikipedia : auto c = 0; // c has type int auto d = c; // d has type int decltype(c) e; ...
1
vote
2answers
258 views

How to get element type from STL container instance?

I know about value_type, key_type... but they operate on types, not on instances. I tried stuff like : std::set<uint64_t> mySet; decltype (mySet)::value_type pos; But it doesnt work. ...
0
votes
1answer
136 views

C++11 - Returning an expression to determine a type

C++11 includes a wonderful amount of great features when it comes to type deduction and management altogether. For example auto and decltype -keywords have proven themselves to be a worthy addition to ...
4
votes
2answers
172 views

Determining return type of “generic function”

Suppose, I want to develop a generic library which should be usable with number-like types including double and user-defined types. The problem, I'm facing right now is that I don't know how to write ...
1
vote
3answers
138 views

Trying to use a template non-type parameter with an unknown type [duplicate]

Possible Duplicate: Is it possible to emulate template<auto X>? Consider the following working code: #include <iostream> template<typename T> struct Traits {}; ...
1
vote
1answer
144 views

auto and decltype in for loop initialization

I've been happily iterating like for( auto n = object.get_size(), i = decltype( n )( 0 ); i < n; ++i ) { ... } to get all the types automagically right. Using g++ 4.7.1 there was ...
2
votes
3answers
238 views

decltype comparison

Is there a way to compare the result of decltype in C++11? In other words, why is this code invalid: template<typename T, typename U> void func(T& t, U& u) { if(decltype(t) == ...
1
vote
2answers
288 views

gcc 4.7 about Variadic Templates/ decltype /std::forward

char foo() { std::cout<<"foo()"<<std::endl; return 'c'; } void foo(char &&i) { std::cout<<"foo(char ...
6
votes
2answers
235 views

How is type deduced from auto return type?

This answer has a code snippet like this : template<class T, class F> auto f(std::vector<T> v, F fun) -> decltype( bool( fun(v[0] ) ), void() ) { // ... } It really compiles ...

1 2 3