Tagged Questions
The decltype tag has no wiki summary.
19
votes
3answers
452 views
C++ Types Impossible to Name
While reading Wikipedia's page on decltype, I was curious about the statement,
Its [decltype's] primary intended use is in generic
programming, where it is often
difficult, or even impossible, ...
17
votes
5answers
692 views
Why is this “min” template of cpp-next at fault?
I was reading cpp-next where this min template is presented as an example of how verbose C++ code can be compared to python code
template <class T, class U>
auto min(T x, U y)->decltype(x ...
17
votes
2answers
646 views
trailing return type using decltype with a variadic template function
I want to write a simple adder (for giggles) that adds up every argument and returns a sum with appropriate type.
Currently, I've got this:
#include <iostream>
using namespace std;
template ...
15
votes
1answer
1k views
Difference between std::result_of and decltype
I have some trouble understanding the need for std::result_of in C++0x. If I understood correctly, result_of is used to obtain the resulting type of invoking a function object with certain types of ...
11
votes
4answers
293 views
The relationship between auto and decltype
Is
auto x = initializer;
equivalent to
decltype(initializer) x = initializer;
or
decltype((initializer)) x = initializer;
or neither?
10
votes
1answer
188 views
Trailing return types, decltype and const-ness
I was merily experimenting with the new trailing return types, where I hit a problem with this (simplified) code
#include <list>
class MyContainer{
std::list<int> ints;
auto begin( ...
10
votes
1answer
126 views
What is the type of a named rvalue reference?
Consider the following code:
int&& x = 42;
static_assert(std::is_same<decltype( x ), int&&>::value, "&&");
static_assert(std::is_same<decltype((x)), int& ...
10
votes
5answers
342 views
What is decltype(0 + 0)?
(Prompted by an answer.)
Given N3290, §7.1.6.2p4, where the list items are unnumbered, but numbered here for our convenience:
The type denoted by decltype(e) is defined as follows:
if e ...
8
votes
4answers
490 views
Detect operator support with decltype/SFINAE
A (somewhat) outdated article explores ways to use decltype along with SFINAE to detect if a type supports certain operators, such as == or <.
Here's example code to detect if a class supports ...
8
votes
1answer
262 views
C++0x decltype and the scope resolution operator
With a class such as Foo:
struct Foo { static const int i = 9; };
I find that GCC 4.5 will reject the following
Foo f;
int x = decltype(f)::i;
It will work if I use an intermediate typedef, such ...
8
votes
2answers
437 views
C++0x lambda in decltype
For the following code:
auto F(int count) -> decltype([](int m) { return 0; })
{
return [](int m) { return 0; }; ...
8
votes
2answers
567 views
Unable to instantiate function templates which uses decltype to deduce return type, if called from inside a lambda?
I'm trying to use C++0x, and in particular lambda expression and decltype to simplify some of my code, using the MSVC10 RC compiler.
I've run into the following very odd problem:
template ...
6
votes
3answers
595 views
C++ template: get return type of member function without an object
I have a number of classes that I cannot modify. Each has a copy constructor, at least one other constructor, and a function foo() that returns some value. I want to make a class template that can ...
5
votes
3answers
306 views
C++0x: Perfect forwarding
If we have the following:
template <class T>
struct B
{
T data;
}
struct A
{
int data_array[100];
}
int main()
{
A x;
const A x_const;
auto y1 = f(A());
auto y2 = f(x);
auto y3 ...
5
votes
3answers
203 views
Instantiating a function definition in a template that uses decltype only in certain circumstances
As an exercise in understanding C++0x, I am trying to create a C++ class that wraps a pointer of some template-ized type:
template <typename T>
class Wrapper {
T *t;
/* ... */
};
...
4
votes
1answer
122 views
Using decltype to cast this to const
I'm attempting to solve a problem in which decltype will greatly simplify things, but I'm running into an issue using decltype on *this and adding a const qualifier. The sample code below demonstrates ...
4
votes
1answer
206 views
Decltype for return of a function
I am making a templated class that is a wrapper around any iterator. I am making the operator* this way:
template <typename T>
class MyIterator {
public:
//...
decltype(*T()) ...
4
votes
5answers
406 views
Member function call in decltype
The following code:
struct A
{
int f(int);
auto g(int x) -> decltype(f(x));
};
Fails to compile with the error:
error: cannot call member function 'int B::f(int)' without object
If I ...
4
votes
3answers
240 views
decltype and parenthesis
I don't understand the last line of the example on page 148 of the FCD (§7.6.1.2/4):
const int&& foo();
int i;
struct A { double x; };
const A* a = new A();
decltype(foo()) x1 = i; // ...
4
votes
3answers
2k views
Using auto and decltype in C++11
I'm trying to learn the currently accepted features of c++11 and I'm having trouble with auto and decltype. As a learning exercise I'm extending the std class list with some generic functions.
...
4
votes
1answer
1k views
c++ deduction of “non type pointer to function” class template parameters
Consider a template class like:
template<typename ReturnType, ReturnType Fn()>
class Proxy
{
void run()
{
ReturnType ret = Fn();
// ... do something ...
}
};
// and a ...
3
votes
1answer
154 views
decltype of a class member variable, is it forbidden? Why?
I can write
int a;
decltype(a) b;
but my compiler (Microsoft Visual Studio 2010, cl Version 16.00.40219.01) forbid me
class A
{
int a;
decltype(a) b;// error C2327: 'A::a' : is not a type ...
3
votes
3answers
266 views
Behavior of decltype
Say I have an object of some of stl container classes obj. I can define other object of same type this way:
decltype(obj) obj2;
But I can't declare iterator for the container this way:
...
3
votes
3answers
226 views
Correct way to use decltype as trailing return type
I very often see example of this form:
template <typename T, typename U>
auto add(T&& t, U&& u) -> decltype(std::forward<T>(t) + std::forward<U>(u))
{
return ...
3
votes
2answers
368 views
decltype in class template specialization
I am trying to use decltype inside a template class as follows:
#include <functional>
template <typename T>
class A
{
typedef decltype(std::bind(&A::f, std::declval<A>())) ...
3
votes
4answers
234 views
C++0x decltype fails to deduce member variable constness
Consider the following code:
template <typename T>
class B
{
};
template <typename T>
B<T> f(T& t)
{
return B<T>();
}
class A
{
class C {};
C c;
public:
...
3
votes
2answers
234 views
CRTP fails w/ decltype
template<typename T> struct A {
auto func() -> decltype(T::func()) {
return T::func();
}
};
class B : public A<B> {
void func() {
}
};
Seems pretty simple to ...
2
votes
1answer
64 views
`decltype`: function return type `T` converted to `T&` for user-defined types (VS2010)
EDIT: GCC compiles it just fine, it's VS2010 issue. Thanks for pointing me to ideone.com!
While trying to compile the following (VS2010):
#include <iostream>
template< typename PF01, ...
2
votes
3answers
91 views
Getting the right value_type
in my class I have a member:
std::vector<std::string> memory_;
Now I'd like to have a fnc returning what's in the memory's first element but I do not want to specify std::string as a ...
2
votes
1answer
107 views
Recursive trailing return type? [closed]
Possible Duplicate:
trailing return type using decltype with a variadic template function
I want to make a function that sums up several values. If I don't use a trailing return type then ...
2
votes
1answer
210 views
Another problem with decltype
//THIS IS JUST A FRAGMENT OF A static_numeric_limits.h for the purpose of this example
#include <limits.h>
template<class T>
struct static_numeric_limits;
...
2
votes
2answers
229 views
Using decltype in a late specified return in CRTP base class
I'm trying to use decltype in the late specified return of a member function in a CRTP base class and it's erroring with: invalid use of incomplete type const struct ...
2
votes
1answer
150 views
How is decltype supposed to work with operator,
decltype is supposed to yield the type of its parameter.
A comma expression is supposed to have the type of its right hand operand. In the example below all but c2 are false when compiled with VS2010. ...
2
votes
1answer
189 views
Getting around access specifiers with C++0x decltype
Consider the following code:
class A
{
private:
class B {};
public:
B f();
};
A a;
A::B g()
{
return a.f();
}
The compiler rejects this - g cannot return A::B because A::B is private.
...
2
votes
2answers
212 views
Type inference in Visual C++ 2008
Is there some vendor-specific type inference mechanism in Microsoft Visual C++ 2008, similar to the standardized auto or decltype in C++0x?
2
votes
2answers
416 views
Errors using decltype() and SFINAE
In response to .. some other question somewhere, I wrote this code.
struct no_type{};
template<typename T> struct has_apply {
static decltype(T().apply<0u>(double())) func( T* ptr );
...
1
vote
1answer
52 views
`decltype` as part of template type specification within declaration of a template function
The following code compiles in MSVC++, but does not compile in GCC 4.5.1:
#include <iostream>
template< typename PT, bool pB >
struct TA
{
PT m;
TA( PT fT ) :
m( fT )
{
...
1
vote
3answers
131 views
Why CLS() has different meanings in C++11
VS2010 has supported the C++11 partially. I compile the code below in VS2010 RTM. I'm confused why the code CLS() is analyzed to different meanings. In the line "decltype(CLS()) obj1;", the CLS() ...
1
vote
1answer
95 views
Using C++ decltype with overloaded operator++ (preincrement)
For some template typename, I want to make a typedef which is the declared return type of T::operator++() (aka T's preincrement operator).
I didn't find anything definitive online, though there are ...
1
vote
4answers
163 views
C++11 - templates, friends, decltype & access modifiers
What's up guys,
I am trying to overload the addition operator for my math vector class.
My (seemingly logically correct) simplified code is:
template<typename T>
class Vector2
{
private:
T ...
1
vote
2answers
195 views
Enlightening Usage of C++11 decltype
I've just seen this really nice talk Rock Hard: C++ Evolving by Boris Jabes. In the section of the talk concerning Higher-Order Generic Programming he says that the following is an example of a ...
1
vote
5answers
311 views
Why do we have to have late return type?
Take a look at this:
template<class T>
struct X {
private:
T value_;
public:
X():value_(T()) {}
X(T value):value_(value) ...
1
vote
1answer
221 views
How can I use decltype to get the type of a reference?
I'm working on some code using decltype in CodeGear RAD Studio. I've tried the naive solution, which looks not unlike this:
int main(int, char**) {
int i;
int &ir = i;
decltype((ir)) ...
1
vote
3answers
135 views
Type equality test w/ decltype(), auto, or RTTI in C++? Does Boost have something for this?
I'm writing some code to translate a C++ type to an appropriate type for a SQL DB. I want to identify the type, and then depending on what it is, produce the appropriate SQL code. I'm not sure ...
0
votes
2answers
47 views
Accessing static fields by using decltype [closed]
Possible Duplicate:
C++0x decltype and the scope resolution operator
Compiling next example using g++ 4.6.1:
#include <iostream>
struct A
{
static const int v = 1;
};
int ...
0
votes
1answer
45 views
Storing a list of rng's in a std::array for multithreading
I'd like to multithread my rng part of my code using C++11.
I create a bunch of RNG's like this:
typedef std::mt19937 mersenne_twister;
typedef std::uniform_real_distribution<double> unidist;
...
0
votes
1answer
37 views
Get return value for template lambda parameter, how to simplify code?
This is my trick:
template<typename F, typename TArg>
auto get_return_value(F * f = NULL, TArg * arg = NULL)
-> decltype((*f)(*arg));
Example of using:
template<typename F, ...
0
votes
3answers
125 views
decltype acting inconsistent when used in conjunction with conditional operator
While studying some of the new C++11 features, I observed some strangeness related to the new decltype keyword and its interaction with the conditional operator.
I was very surprised to see the ...
0
votes
1answer
75 views
Using auto and decltype in templated functions
I've been trying to use auto return type templates and am having trouble. I want to create a function that accepts an STL map and returns a reference to an index in the map. What am I missing from ...
0
votes
0answers
88 views
The decltype and its uses [closed]
Possible Duplicate:
Behavior of decltype.
Shouldn't the code below compile?
std::vector<int> numbers_;
decltype(numbers_)::size_type index = 0;