Tagged Questions
The typelist tag has no wiki summary.
3
votes
2answers
201 views
What are alternatives to this typelist-based class hierarchy generation code?
I'm working with a simple object model in which objects can implement interfaces to provide optional functionality. At it's heart, an object has to implement a getInterface method which is given a ...
2
votes
3answers
67 views
boost::mpl typelist function application
I have a function that I want to perform on all the types in a typelist (currently represented by an mpl list --- is this even a reasonable way to approach it?)
The key here is that the function only ...
2
votes
4answers
160 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
3answers
4k views
How to use typelists
I read about typelists in 'Modern C++ Design' and I understood it as some kind of union for types. By putting diffrent, non-related types in a typelist, one can use it to represent more than one type ...
1
vote
2answers
88 views
C# Typelist analog to Loki::Typelist with Hierarchy Generator
I loved Loki's C++ HierarchyGenerator and want to do the same in C#.
What I want in the end is a class that has a virtual function per argument in a given typelist.
C++ code I'd like to convert:
...
1
vote
1answer
58 views
Are two typelists spliceable in a constant time?
I'm working a bit with typelists defined in Alexandrescu's Modern C++ Design.
In his books, he talks about Appending a type to a typelist, but he doesn't talk about splicing two typelists...
I guess ...
1
vote
1answer
324 views
Typelists visitor pattern example
I'm interested in Typelists .
At this URLhttp://drdobbs.com/184403813 there is a good example of how using Typelists for creating a visitor pattern.
I have two questions about this example. My two ...
1
vote
3answers
648 views
Runtime typeswitch for typelists as a switch instead of a nested if's?
This is from TTL:
////////////////////////////////////////////////////////////
// run-time type switch
template <typename L, int N = 0, bool Stop=(N==length<L>::value) > struct ...
1
vote
2answers
310 views
How to implement a basic Variant (& a visitor on the Variant) template in C++?
I have tried reading:
http://www.boost.org/doc/libs/1_41_0/boost/variant.hpp
http://www.codeproject.com/KB/cpp/TTLTyplist.aspx
and chapter 3 of "Modern C++ Design"
but still don't understand ...
0
votes
1answer
16 views
Build class hierarchy with overridable handler functions
I'm currently trying to build a class hierarchy automatically by using C++ templates. The final result is a message handler class that provides handler functions for all possible messages, given in a ...
0
votes
1answer
51 views
type visitor over typelist in c++
I'm looking for a way to implement 'type' visitor over c++ typelist. Here, I meant type visitor as to execute particular operator (such as sizeof) over types in typelist.
Conceptually what I want to ...
0
votes
1answer
61 views
Basic Typelist functionality
I'm having a bit of trouble getting my head around TypeLists or lists of templates. That is:
class nulltype{};
template <typename HEAD, typename TAIL>
struct tlist
{
typedef HEAD head;
...
0
votes
4answers
252 views
usage of typelist
Is Typelist(in the sense of Alexandrescu define it) mainly/essentialy useful for generate hierarchy of class (and maybe for class like boost::tuple )
or is there plenty of other domains where typelist ...
0
votes
2answers
135 views
Templating off of an arbitirary-length list of types in C++
Here's what I want to be able to type:
class foo : public watchKeys<A, B, C> {}; //Or any list of keys
Boost::mpl has sequences, which allow you to do this, but I don't want to have to do:
...
0
votes
2answers
857 views
How to build this c++ typelist into a variant?
Here,
how do I fix this c++ typelist template compile error?
we built a typelist, using the code from modern c++ design.
Question is now -- how do I take this and built it into a variant class?
0
votes
2answers
463 views
how do I fix this c++ typelist template compile error?
(from reading chapter 3 of modern c++ design)
typelist.hpp:
class NullType {};
struct EmptyType {};
template <class T, class U>
struct Typelist
{
typedef T Head;
typedef U Tail;
};
...