Tagged Questions
Type traits are syntactic extensions that allow the developer to determine at compile time various characteristics of a type. Support is provided directly in the compiler and a STL template for C++. C++ type traits are provided via the template <type_traits>
29
votes
4answers
2k views
How `is_base_of` works?
Why the following code works?
typedef char (&yes)[1];
typedef char (&no)[2];
template <typename B, typename D>
struct Host
{
operator B*() const;
operator D*();
};
template ...
23
votes
4answers
427 views
What kind of “Traits” are used/defined in the C++0x Standard
A trait in C++ encapsulates a family of operations that allow an Algorithm or Data Structure to operator with that type with which it is instantiated. char_traits are an example for grouping string- ...
15
votes
2answers
253 views
trivial vs. standard layout vs. POD
In layman's terms, what's the difference between trivial types, standard layout types and PODs?
Specifically, I want to determine whether new T is different from new T() for any template parameter T. ...
13
votes
1answer
143 views
Good practices regarding template specialization and inheritance
Template specialization does not take into account inheritance hierarchy. For example, if I specialize a template for Base and instantiate it with Derived, the specialization will not be chosen (see ...
10
votes
2answers
195 views
C++ Idiomatic Type Traits
I have a system of type traits that resides in a namespace, like so:
namespace my_namespace
{
template <typename T>
struct magic_traits
{
static const int value = 0;
};
}
Because people ...
10
votes
1answer
241 views
C++ templates: how to determine if a type is suitable for subclassing
Let's say I have some templated class depending on type T. T could be almost anything: int, int*, pair <int, int> or struct lol; it cannot be void, a reference or anything cv-qualified though. ...
10
votes
4answers
725 views
How to write `is_complete` template?
After answering this question I was trying to find is_complete template in Boost library and I realized that there is no such template in Boost.TypeTraits. Why there is no such template in Boost ...
8
votes
1answer
180 views
Get lambda parameter type
I would like some way to get the first parameter type of a lambda function, is this possible?
e.g.
instead of:
template<typename T>
struct base
{
virtual bool operator()(T) = 0;
}
...
8
votes
1answer
253 views
Variadic Templates and Type Traits
I currently have a variadic function which takes an arbitrary number of arguments of arbitrary types (duh), however, I want to restrict the types to ones which are POD only, and also the same size or ...
7
votes
3answers
144 views
Type trait for moveable types?
I'm trying to write a template that behaves one way if T has a move constructor, and another way if T does not. I tried to look for a type trait that could identify this but have had no such luck and ...
7
votes
2answers
306 views
How to determine if a type is derived from a template class?
How can I determine if a type is derived from a template class? In particular, I need to determine if a template parameter has std::basic_ostream as a base class. Normally std::is_base_of is the ...
6
votes
2answers
224 views
C++ : how do I use type_traits to determine if a class is trivial?
In C++0x, I would like to determine if a class is trivial/has standard layout so I can use memcpy(), memset(), etc...
How should I implement the code below, using type_traits, so I can confirm that ...
6
votes
1answer
160 views
Is it possible to use type traits to check whether a type is a container?
Can I use C++ Type Traits to check if a type is an STL-like container? I already know of GCC's builtin __is_class but I would like to be a bit more specific if possible.
6
votes
1answer
226 views
Is there a compile-time func/macro to determine if a C++0x struct is POD?
I'd like to have a C++0x static_assert that tests whether a given struct type is POD (to prevent other programmers from inadvertently breaking it with new members). ie,
struct A // is a POD type
{
...
6
votes
2answers
175 views
Is it possible to use type_traits to differentiate between char & wchar_t?
I am trying to write a function that can handle both char & wchar_t using the type_traits feature of C++0x. Yes, I know how to do it without type_traits, but I want to do it using type_traits for ...
6
votes
3answers
276 views
Are conditional typedef's possible in C++?
this question is related to c++
there is a library which declares a class named Solver < TS,FS >. Solver is a member of another class Domain (written by me)
now there are many Domains which have ...
5
votes
1answer
99 views
Is there a type-trait to remove top-level cv and reference at once?
I just want to know if there is already one provided by the standard. I know it's easy to make one yourself
// for C++03, use <tr1/type_traits> and std::tr1
#include <type_traits>
...
5
votes
3answers
253 views
Help with type traits
Suppose we have the following template class
template<typename T> class Wrap { /* ... */ };
We can not change Wrap. It is important.
Let there are classes derived from Wrap<T>. For ...
5
votes
2answers
436 views
Type traits definition. Traits blobs & Metafunctions
Reading some source code, I have found next traits definition:
namespace dds {
template <typename Topic> struct topic_type_support { };
template <typename Topic> struct ...
4
votes
5answers
143 views
Why are type_traits implemented with specialized template structs instead of constexpr?
The question is clear. Is there any reason why the standard specifies them as template structs instead of simple boolean constexpr?
In an additional question that will probably be answered in a good ...
4
votes
3answers
123 views
Is there a way to prevent a class from being derived from twice using a static assert and type trait?
I realize this is a contrived example, but I want a compile check to prevent this...
class A {};
class B : public A {};
class C : public A {};
class D : public B, public C
{
...
4
votes
2answers
111 views
Can I determine whether a pointer is of integral type via type traits?
By using type traits, I can find out whether a type is integral or a pointer (and more). Is it also possible to find out whether the pointer being passed is that of an integral data type (int, float, ...
4
votes
1answer
209 views
Boost type_traits is_array
I have been trying to go through the Boost type-traits headers, and feeling quite sick now given the intense unreadability provided by countless #define. And then some more #define.
To be specific, ...
4
votes
5answers
186 views
C++ enable_if (or workaround) for member operator
template<typename T>
struct foo
{
T* p;
foo(T* x) : p(x) {}
~foo() { if(p) delete p; }
T& operator*() const { return *p; }
};
int main()
{
foo<int> i(new int);
...
4
votes
3answers
295 views
Restricting std::sort to random access iterators
I was just wondering, since you can only pass random access iterators to std::sort anyway, why not enforce that restriction by defining it only for random access iterators in the first place?
...
4
votes
2answers
267 views
C++ - type traits question
I wish to know if it's possible in C++ to somehow handle the following situations:
Situation 1) (Easily handled)
class BasicFacility { }
template <typename U1, typename U2> class Facility : ...
3
votes
1answer
90 views
How do I prevent diamond pattern in nested template types using static assert and type traits? [closed]
Possible Duplicate:
Is there a way to prevent a class from being derived from twice using a static assert and type trait?
What I'd like to prevent is more than one of the C based template ...
3
votes
2answers
82 views
get value_type of dereferencable types
I how would I achieve the following for any derefernable type?
I find my current solution lacking since I need to do a class template specialization for every type I want it to work with:
...
2
votes
2answers
120 views
is_member_function_pointer implementation
I am trying to implement my own is_member_function_pointer and I'm having trouble with it.
namespace __implementation
{
// integral_constant
template<typename T, T v>
struct ...
2
votes
4answers
100 views
Advantages of type traits vs static members?
I have a class (Voxel) with subclasses which may or may not have a number of different properties (material, density, etc) with get and set methods. Now, I want to write some code as follows:
...
2
votes
1answer
60 views
How do I detect bitwise-moveable types using type traits in Visual C++ 9?
I have an std::vector-like class that is compiled with Visual C++ 2008. There's a piece in that class where stored elements are moved - either the body is reallocated or an insertion/partial erasure ...
2
votes
3answers
149 views
detecting typedef at compile time (template metaprogramming)
I am currently doing some template metaprogramming. In my case I can handle any "iteratable" type, i.e. any type for which a typedef foo const_iterator exists in the same manner. I was trying to use ...
2
votes
4answers
121 views
c++: Is there something like “boost/std typetraits conditional” that generates a value (not a type) at compile time?
I am currently doing the following to generate a value at compile time, which works:
//if B is true, m_value = TRUEVAL, else FALSEVAL, T is the value type
template<bool B, class T, ...
2
votes
1answer
183 views
C1001: An internal error has occurred in the compiler
This should be self explanatory. I'm trying to implement a distribution sort, and the MSVC compiler is crashing. It seems to be a specific case to do with my SFINAE to detect a member function, this ...
2
votes
2answers
78 views
false behaviour of is_base_of when used together with bind
Using variadic template arguments together with a simple template argument I have experienced some strange behaviour of is_base_of when it was instantiated from a binded functor.
Here is the code:
...
2
votes
4answers
132 views
How to find, from which template-layers is object composed of?
How can I use templates, to find out, from which types is type composed of when using template layers?
Let's have
template <typename Super>
class A : public Super {};
template <typename ...
2
votes
4answers
161 views
Iterating through collection of different types in C++
Situation
I have a template class TIppImage<T> for image of type T. I have singleton class CIppMemoryManager which can store a number of images of different size and type.
class ...
2
votes
2answers
200 views
Extract variadic template parameter pack and use it in another variadic template in a type traits meta-function?
I want to determine if any variadic class template is the base of another class. Typically I'd use std::is_base_of, but I don't think my use case fits, and I'm not sure if there's already something ...
2
votes
0answers
340 views
check for member existence in C++ [closed]
Possible Duplicate:
SFINAE to check for inherited member functions
I want to perform a compile-time-check if a specific member is existing in a class.
I found a few solutions like this:
Is ...
2
votes
3answers
435 views
C++ class/structure data member offset as constant expression
Taking offset of a data member is as easy as this:
#define MEMBER_OFFSET(Type, Member) \
((unsigned long)(((char *)&((Type *)0)->Member) - (char *)0));
I want to make this a constant ...
2
votes
2answers
2k views
C++ type traits to check if class has operator/member
Is it possible to use boost type traits or some other mechanism to check if a particular template parameter has an operator/function, e.g. std::vector as a template parameter has operator[], while ...
2
votes
4answers
220 views
How can I use templates to determine the appropriate argument passing method?
As I understand it, when passing an object to a function that's larger than a register, it's preferable to pass it as a (const) reference, e.g.:
void foo(const std::string& bar)
{
...
}
...
1
vote
4answers
131 views
operator<< overload for smart pointers
I would like to overload the operator<< to allow it to work with shared_ptr.
template<typename T>
struct foo
{
virtual foo& operator<<(const T& e) = 0;
};
...
1
vote
3answers
42 views
Defining traits for templatised classes
I understand how to create type traits and then specialise for a particular class, but in my case I would like to specialise for a class template. The code below does not compile, but the idea is that ...
1
vote
0answers
82 views
enable_if on member template function of class template
This seams to be a bug in MSVC10?
#include <type_traits>
template<int j>
struct A{
template<int i>
typename std::enable_if<i==j>::type
t(){}
};
int main(){
...
1
vote
2answers
80 views
boost::aligned_storage copying NON-POD objects like a POD type on return
I have a class that is using boost::aligned storage to statically allocate memory within the object, then initialize the objects at a later time. However, a crash in one test program appears to show ...
1
vote
2answers
116 views
C++: Using inner typedef if available in traits class or default
I'm currently writing a template that operates differently based on the category of the input.
There are 3 cases I'm looking to add to my traits class.
A. The type has a typedef type_category, ...
1
vote
4answers
218 views
How to typedef the iterator of a nested container?
What is the proper way to declare the iterator i in the following code?
#include <iostream>
#include <vector>
using namespace std;
template<class Mat>
void f(const Mat& mat) ...
1
vote
2answers
165 views
isAbstract template and visual studio
The following template will decide if T is abstract with g++.
/**
isAbstract<T>::result is 1 if T is abstract, 0 if otherwise.
*/
template<typename T>
class isAbstract
{
class No { ...
0
votes
1answer
28 views
Retrieving the base type(s) from a template paramater
Is it possible to somehow get the base of a certain class so that it could be passed up a template chain like so (pseudo code)
template<typename base>
class first
{
...