Tagged Questions
3
votes
1answer
17 views
How does this template result in compile time optimization over runtime recursion?
I understand the well-known example of creating a compile-time factorial calculation with templates such that recursive runtime calculations are not necessary. In such an example, all the required ...
3
votes
1answer
141 views
Template metaprogramming within the body of a template class
I'm trying to write a partially specialised template function within the body of a template class/struct. The partial specialisation is done to perform recursive template metaprogramming.
...
7
votes
2answers
176 views
“Member is private” although I don't access it from outside, when using trailing return type
How can I fix the following problem?
I'm writing some functional library which defines the following functions which are relevant for this question:
call(f,arg): Calls a function with an argument. ...
1
vote
1answer
94 views
SFINAE - Detect constructor with one argument
Does anyone know how to detect a constructor with one argument? For example, this struct should have a negative result:
struct MyStruct
{
MyStruct( int x, int x2 ) : y( x ) {}
int y;
};
I have ...
3
votes
1answer
55 views
boost::is_same with templated base class
I'm puzzled by the following problem. I want to write some trait struct in order to test if a certain class is derived from another. This can be solved with boost::is_base_of<>. However, the base ...
3
votes
1answer
68 views
Retrieve the return type by the function reference?
Hi suppose I have a type typedef ReturnType (ObjectType::*fun1 )( Arg0 ); is it possible somehow to get the return type and number of the arguments by having one reference to the function?
For ...
3
votes
5answers
219 views
Prevent templated member function from being instantiated for a given type
I have a templated matrix class that I explicitly instantiate for various POD types and custom class types. Some of the member functions however don't make sense for a few of such custom types. For ...
1
vote
2answers
91 views
Array of static objects of template class
I have a template class template<typename T> class TplObject. I need a static structure kind of array, where indexes are typename T. I can do something like this:
array.add<Type1>(); // ...
1
vote
1answer
73 views
Is it posible to collect data at compile time
Objective: In different parts of code I am loading files (textures and fonts in my case).
Thus downloading files can occur at any time of execution of the program (although all cached, but still.)I ...
0
votes
2answers
82 views
StackPointer template
I'm reading "Modern C++ design" and hit on an idea to build a class that would act like a pointer but it would allocate object on the stack instead of on the heap. It could be used in functions that ...
0
votes
2answers
92 views
Multiple variadic templated delegate system
So, I've recently build a delegate system using c++11's variadic templates, and it works just as a charm.
However in the system I've built arguments to functions are given at creation-time (as I'd ...
1
vote
1answer
54 views
Usage of template class with template method in C++
I have a class, which have a public templated methods.
This class has 2 strategies of behavior, which i want to pass via class template.
template<class Strategy>
class SomeClass {
public:
...
1
vote
1answer
93 views
Is there any way to derive the object type from a member pointer type in C++
Is it possible to write a C++ template owner_of<...> such that given this code:
struct X { int y; }
owner_of<&X::y>::type is X?
3
votes
2answers
200 views
Map function with c++11 constructs
Both to teach myself about implementing more advanced template constructions than simply basic ones, and becouse they are useful in many circumstances, I'm trying to implement map, filter and similar ...
1
vote
3answers
118 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 ...
4
votes
3answers
114 views
Count non-default template arguments with metaprogramming?
I have a template class that accepts from 1 to 8 integer arguments. The permitted range for each argument is 0..15. A default value of 16 for each argument allows me to detect unused arguments.
I ...
3
votes
1answer
36 views
how do i pass a function along with its signature (haskell style) using a c++ template?
as a programming exercise, i've decided to try to implement all my haskell assignments for a course i'm doing in c++ as well. currently, i'm trying to send this function :
int callme(){
cout ...
1
vote
1answer
111 views
Literal operator templates don't work in GCC 4.8
I've tried the following code in GCC 4.8:
#include <iostream>
using namespace std;
template <typename T, T... vs>
struct integral_list {
typedef T elem_type;
};
template <typename ...
3
votes
1answer
101 views
Deduction of the type of a nested template variadic non-type list
Consider the following classes:
template<class T, int...> struct MyClass1 {};
template<class T, unsigned int...> struct MyClass2 {};
template<class T, long long int...> struct ...
4
votes
2answers
110 views
Mixing typedef and CRTP?
Consider the following example:
#include <iostream>
#include <iostream>
#include <type_traits>
template<typename Type, template<typename> class Crtp>
class Base
{
...
4
votes
3answers
166 views
Why compile error with enable_if
Why this does not compile with gcc48 and clang32?
#include <type_traits>
template <int N>
struct S {
template<class T>
typename std::enable_if<N==1, int>::type
...
5
votes
1answer
128 views
Two different results on GCC 4.6 and 4.7 for template template deduction
Considering the following code :
#include <iostream>
#include <vector>
#include <array>
#include <type_traits>
// Version A
template<typename T>
void f(const T& x)
...
3
votes
1answer
105 views
Force a specific overload when template<typename, value…>
This question follows : Force a specific overload when template template
Consider the following code :
#include <iostream>
#include <vector>
#include <array>
#include ...
8
votes
2answers
95 views
Force a specific overload when template template
Consider the following code :
#include <iostream>
#include <vector>
#include <type_traits>
// Version A
template<typename T>
void f(const T& x)
{
...
2
votes
2answers
66 views
Block a generic template function for all templated derived types
This question follows this one : Function overloading and template deduction priority
Considering the following classes :
template<typename T1, typename T2>
class Base {};
class Derived0 : ...
0
votes
2answers
101 views
Yet another template circular dependency issue
I'm trying to create an object oriented template based generic graph structure however in my design I came across a possible circular dependency which I'm not sure how to avoid.
I define my vertex ...
9
votes
1answer
134 views
How to apply a function to each component of a variadic list and return a variadic list?
The following didactic example illustrates my problem :
#include <iostream>
#include <cmath>
template<class Function, class... Args>
double apply(Function f, Args... args)
{
...
3
votes
1answer
381 views
C++ Template MetaProgramming: Compile Time Conditional Operator on Template Type
I'm using template metaprogramming to create a Variant and Functor (a generic functor) data type. I have an interesting problem with needing to handle arguments a certain way for particular argument ...
5
votes
2answers
78 views
template to check for existance of overloaded member function
I try to specialize a template if a class has a special member function like this (found here in another example):
template <typename T>
class has_begin
{
typedef char one;
typedef long ...
1
vote
3answers
181 views
Passing an integer or a type as a template parameter?
Here is an example case of what I'm trying to do (it is a "test" case just to illustrate the problem) :
#include <iostream>
#include <type_traits>
#include <ratio>
template<int ...
3
votes
2answers
291 views
How to calculate offset of a class member at compile time?
Given a class definition in C++
class A
{
public:
//methods definition
....
private:
int i;
char *str;
....
}
Is it possible to calculate the offset of a class member at ...
6
votes
2answers
155 views
Mapping variadic template arguments in D
Is there any built-in, or library-provided way to map a set of variadic template arguments in D?
For example:
void foo(Args...)(Args args)
{
bar(fun(args));
}
I want that to expand to:
void ...
0
votes
2answers
127 views
C++ types are abstraction from addresses? - C++ templates
Unfortunately i have lost the link and the source for this article, but I do remember that it was about metaprogramming and templates in C++; when talking about the limitations around the template ...
1
vote
1answer
114 views
Problems with recursive templates in D
My first attempt to use recursive templates in d and i'm lost:
import std.stdio, std.conv, orange.util.Reflection;
struct Foo {
int a = 7;
int b = 4;
int c = 5;
}
void main(string[] ...
3
votes
2answers
186 views
C++11 way to write template for picking bigger integer type?
At compile time in C++11 in a template function that takes 2 template parameters, both of which must be unsigned integer types, I'd like to have a local variable have the type of whichever of the two ...
2
votes
3answers
218 views
Using SFINAE to calculate the size of different elements
Introduction
I'm just begining to reading and studying about SFINAE. In order to improve my understanding I've started trying things by myself.
So I've been wondering about a useful but yet simple ...
2
votes
1answer
208 views
Designing a high perfomance numeric function in c++
I am building on a numeric C++ library that aims in achieving high performance computations (off course double-types will be the main arithmetic type). Therefore i am making heavy use of template ...
19
votes
2answers
712 views
Why does using two sizeofs work to check whether a class is default constructible, but one does not?
I used the code from "Is there a way to test whether a C++ class has a default constructor (other than compiler-provided type traits)?".
I modified it slightly to work with all my test cases:
...
3
votes
1answer
237 views
wrapping C callbacks with C++ lambdas, possible to use template polymorphism?
Okay, I have posted a few questions lately related to wrapping a C callback API with a C++11-ish interface. I have almost got a satisfying solution, but I think it could be more elegant and need the ...
3
votes
1answer
155 views
Construct a variadic template of unsigned int recursively
I need a tricky thing in a C++ 2011 code.
Currently, I have a metafunction of this kind :
template<unsigned int N, unsigned int M>
static constexpr unsigned int myFunction()
This function ...
0
votes
3answers
224 views
A workaround for partial specialization of function template?
Consider the following metafunction for an integral pow (it is just an example) :
class Meta
{
template<int N, typename T> static constexpr T ipow(T x)
{
return (N > 0) ? ...
4
votes
2answers
424 views
constexpr vs template for compile-time maths functions?
I'm quite confused with the new keyword constexpr of C++2011. I would like to know where to use constexpr and where to use templates metaprogramming when I code compile-time functions (especially ...
2
votes
2answers
196 views
Square root metafunction?
Is it possible to compute the square root of an integer with a metafunction with the following signature :
template<unsigned int N> inline double sqrt();
(or maybe using the constexpr ...
3
votes
2answers
242 views
Add/Remove data members with template parameters?
Consider the following code :
template<bool AddMembers> class MyClass
{
public:
void myFunction();
template<class = typename std::enable_if<AddMembers>::type> ...
4
votes
2answers
143 views
How to determine between two c++ types without instantiating the types?
I have following problem:
I want to determine between two types without actually evaluating the 'resulting' types - since the type may not exist at all - be invalid. (Please no C++11 stuff)
Example:
...
5
votes
3answers
206 views
Easiest way to get the N-th argument of a variadic templated class?
I wonder what is the easiest and more common way to get the N-th parameter of a variadic templated class at compile-time (The returned value has to be as a static const for the compiler in order to do ...
0
votes
1answer
179 views
string_t from(wstring OR string) when string_t can also be typedef of both
namespace settings{
typedef wchar_t char_t;
typedef std::basic_string<char_t> string_t;
}
namespace util{
namespace string{
std::basic_string<wchar_t> toWide(const ...
3
votes
3answers
299 views
template metaprogramming: (trait for?) dissecting a specified template into types T<T2,T3 N,T4, …>
I'm trying to deduce the underlying template type T from a type E = T<T2,T3>. This would for example make it possible to make a template function pair_maker(const E & a) which can be used ...
0
votes
1answer
52 views
create members automatically if they are used in construction
Suppose I have a structure (or a class that I use just for storing) filled with doubless. I make a constructor to assign to those doubless:
struct Point {
double time;
double x;
double y;
...
3
votes
5answers
168 views
Iterate a template argument list?
I am trying to figure a way to loop through a template argument list but without success
I cannot use c++11 variadic template feature and it need it to be done at compile time
I can assume there ...
