Tagged Questions

Metaprogramming is writing programs that write or manipulate other programs as their data.

learn more… | top users | synonyms (1)

63
votes
32answers
22k views

Python Vs. Ruby for Metaprogramming

I'm currently primarily a D programmer and am looking to add another language to my toolbox, preferably one that supports the metaprogramming hacks that just can't be done in a statically compiled ...
42
votes
9answers
7k views

Metaprogramming in C++ and in D

The template mechanism in C++ only accidentally became useful for template metaprogramming. On the other hand, D's was designed specifically to facilitate this. And apparently it's even easier to ...
35
votes
5answers
18k views

Python dictionary from an object's fields

Do you know if there is a built-in function to build a dictionary from an arbitrary object? I'd like to do something like this: >>> class Foo: ... bar = 'hello' ... baz = 'world' ... ...
31
votes
1answer
903 views

Why can't I compile this unholy, templated mess?

I don't get it, it seems to me that the call to f is completely unambiguous, but it fails to compile with "expected primary-expression before ‘int’". If I comment out the line with the call to f, it ...
31
votes
2answers
1k views

easing c++ to objective-c/cocoa bridging via metaprogramming?

In a pure C++ world we can generate interfacing or glue code between different components or interfaces at compile time, using a combination of template-based compile-time and runtime-techniques (to ...
31
votes
8answers
6k views

Best introduction to C++ template metaprogramming?

Static metaprogramming (aka "template metaprogramming") is a great C++ technique that allows the execution of programs at compile-time. A light bulb went off in my head as soon as I read this ...
30
votes
3answers
12k views

Ruby: define_method vs. def

As a programming exercise, I've written a Ruby snippet that creates a class, instantiates two objects from that class, monkeypatches one object, and relies on method_missing to monkeypatch the other ...
28
votes
6answers
929 views

What “reify” and “reification” means in the context of (functional?) programming?

I read this term a lot in blogs about haskell and functional programming (specially in sigfpe's blog) but I don't have a clue about what it means. I get away with not knowing it most of the times, but ...
25
votes
2answers
1k views

Template Metaprogramming - Difference Between Using Enum Hack and Static Const

I'm wondering what the difference is between using a static const and an enum hack when using template metaprogramming techniques. EX: (Fibonacci via TMP) template< int n > struct TMPFib { ...
24
votes
9answers
965 views

What's the use of metaprogramming?

I've read: Wikipedia Code Generation vs. Metaprogramming The art of Metaprogramming Metaprogramming at c2.com and I confess some confusion at the purpose behind metaprogramming/code generation. ...
23
votes
6answers
1k views

ruby - why TrueClass and FalseClass instead of Boolean?

I was working on serializing values when found out about this one. Ruby has a TrueClass class, and a FalseClass class, but it has no Boolean class. I'd like to know why is this. I see some advantages ...
23
votes
1answer
9k views

Objective-C class -> string like: [NSArray className] -> @“NSArray”

I am trying to get a string name of a class from the class object itself. // For instance [NSArray className]; // @"NSArray" I have found object_getClassName(id obj) but that requires an instance ...
23
votes
3answers
5k views

C++ SFINAE examples?

I want to get into more template meta-programming. I know that SFINAE stands for "substitution failure is not an error." But can someone show me a good use for SFINAE?
23
votes
7answers
3k views

Python decorator makes function forget that it belongs to a class

I am trying to write a decorator to do logging: def logger(myFunc): def new(*args, **keyargs): print 'Entering %s.%s' % (myFunc.im_class.__name__, myFunc.__name__) return ...
22
votes
7answers
12k views

Adding an instance variable to a class in Ruby

How can I add an instance variable to a defined class at runtime, and later get and set its value from outside of the class? Edit: It looks like I need to clarify that I'm looking for a ...
22
votes
8answers
3k views

Is static metaprogramming possible in Java?

I am a fan of static metaprogramming in C++. I know Java now has generics. Does this mean that static metaprogramming (i.e., compile-time program execution) is possible in Java? If so, can anyone ...
21
votes
3answers
2k views

GCC error with variadic templates: “Sorry, unimplemented: cannot expand 'Identifier…' into a fixed-length arugment list”

While doing variadic template programming in C++11 on GCC, once in a while I get an error that says "Sorry, unimplemented: cannot expand 'Identifier...' into a fixed-length arugment list." If I ...
20
votes
4answers
5k views

method_missing gotchas in Ruby

Are there any things to be careful about when defining the method_missing method in Ruby? I'm wondering whether there are some not-so-obvious interactions from inheritance, exception throwing, ...
19
votes
10answers
565 views

How do you write code whose logic is protected against future additional enumerations?

I'm having a hard time describing this problem. Maybe that's why I'm having a hard time finding a good solution (the words just aren't cooperating). Let me explain via code: // original code enum ...
19
votes
4answers
3k views

Is anyone using D in commercial applications?

Ok, this is a little open ended, but I think D could do with a bit of promotion. Personally I think D is a superb implementation language - but it's not mainstream enough yet for many people to take ...
19
votes
12answers
1k views

D Templates: Coolest Hack

What is the coolest somewhat practical metaprogramming hack you've done or seen done in the D programming language? Somewhat practical means excluding, for example, the compile-time raytracer.
18
votes
3answers
2k views

Compile time string hashing

I have read in few different places that using C++11's new string literals it might be possible to compute a string's hash at compile time. However, no one seems to be ready to come out and say that ...
18
votes
2answers
3k views

How do you pass arguments to define_method?

I would like to pass an argument(s) to a method being defined using define_method, how would I do that?
17
votes
4answers
933 views

What was Tim Sweeney thinking? (How does this C++ parser work?)

Tim Sweeney of Epic MegaGames is the lead developer for Unreal and a programming language geek. Many years ago posted the following screen shot to VoodooExtreme: As a C++ programmer and Sweeney ...
16
votes
4answers
495 views

Statically Typed Metaprogramming?

I've been thinking about what I would miss in porting some Python code to a statically typed language such as F# or Scala; the libraries can be substituted, the conciseness is comparable, but I have ...
16
votes
3answers
2k views

Is there a way to do a C++ style compile-time assertion to determine machine's endianness?

I have some low level serialization code that is templated, and I need to know the system's endianness at compiletime obviously (because the templates specializes based on the system's endianness). ...
16
votes
13answers
2k views

Best non-C++ language for generative programming?

C++ is probably the most popular language for static metaprogramming and Java doesn't support it. Are there any other languages besides C++ that support generative programming (programs that create ...
15
votes
9answers
1k views

Syntactic sugar in C/C++

I have been looking into Ruby and find its keywords "until" and "unless" very interesting. So I thought what was a good way to add similar keywords into C/C++. This is what I came up with: #define ...
15
votes
9answers
4k views

Is metaprogramming possible in C#?

In particular, would it be possible to have code similar to this c++ code executed at compile time in c#? template <int N> struct Factorial { enum { value = N * Factorial<N - ...
14
votes
2answers
314 views

Quick sort in compiltion time using C++11 variadic template

Quick sort in compiltion time using C++11 variadic template Hi, all. I just implement the quick sort by using C++11 variadic template to evaluate it in compilation time. But I encounter the ...
14
votes
2answers
582 views

C++ metafunction to determine whether a type is callable

Is it possible to write a C++(0x) metafunction that determines whether a type is callable? By callable type I mean a function type, function pointer type, function reference type (these are detected ...
14
votes
4answers
2k views

Can you make custom operators in C++?

Is it possible to make a custom operator so you can do things like this? if ("Hello, world!" contains "Hello") ... Note: this is a separate question from "Is it a good idea to..." ;)
14
votes
10answers
2k views

template-ing a for loop in C++?

First time poster, be gentle! I have a C++ snippet below with a run-time for loop, for(int i = 0; i < I; i++) for (int j = 0; j < J; j++) A( row(i,j), column(i,j) ) = f(i,j); The ...
14
votes
10answers
882 views

When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming

IMHO to me OOPS, design patterns make sense and i have been able to apply them practically. But when it comes to "generic programming /meta programming" of the Modern C++ kind, i am left confused. ...
14
votes
5answers
2k views

Getting template metaprogramming compile-time constants at runtime

Background Consider the following: template <unsigned N> struct Fibonacci { enum { value = Fibonacci<N-1>::value + Fibonacci<N-2>::value }; }; template <> ...
14
votes
8answers
1k views

How do you debug heavily templated code in c++?

I find it very hard to figure out what is wrong with my code when using C++ template meta-programming. It might be that I am just not very good at understanding the error messages, but as far as I'm ...
13
votes
5answers
362 views

Good real-world uses of metaclasses (e.g. in Python)

I'm learning about metaclasses in Python. I think it is a very powerful technique, and I'm looking for good uses for them. I'd like some feedback of good useful real-world examples of using ...
13
votes
3answers
1k views

How do you evaluate a string as a clojure expression?

How would I get something similar to the following?: (evaluate-text "(+ 1 2)") ; resolves to 3
12
votes
2answers
217 views

Conversion operator template specialization

Here's a largely academic exercise in understanding conversion operators, templates and template specializations. The conversion operator template in the following code works for int, float, and ...
12
votes
4answers
532 views

Examples of what D’s templates can be used for

I hear that the D language has powerful metaprogramming features for executing functions at compile time. That sounds very exciting, but I find it difficult to think of practical examples of things ...
12
votes
4answers
814 views

Why is partial specialziation of a nested class template allowed, while complete isn't?

template<int x> struct A { template<int y> struct B {};. ...
12
votes
3answers
3k views

What is “for” in Ruby

In Ruby: for i in A do # some code end is the same as: A.each do |i| # some code end for is not a kernel method: What exactly is "for" in ruby Is there a way to use other keywords to ...
11
votes
4answers
120 views

Ruby nil-like object

How can I create an Object in ruby that will be evaluated to false in logical expressions similar to nil? My intention is to enable nested calls on other Objects where somewhere half way down the ...
11
votes
3answers
588 views

Permutations of a List of Types Using boost::mpl

I am trying to create a list containing the permutations of a given type list. The below code seems to function, though without the intended result, when I use a specified list instead of generating ...
11
votes
10answers
813 views

Can a C program modify its executable file?

I had a little too much time on my hands and started wondering if I could write a self-modifying program. To that end, I wrote a "Hello World" in C, then used a hex editor to find the location of the ...
11
votes
12answers
1k views

Programmatically create static arrays at compile time in C++

One can define a static array at compile time as follows: const std::size_t size = 5; unsigned int list[size] = { 1, 2, 3, 4, 5 }; Question 1 - Is it possible by using various kinds of ...
11
votes
4answers
252 views

C# Generic Generics (A Serious Question)

In C# I am trying to write code where I would be creating a Func delegate which is in itself generic. For example the following (non-Generic) delegate is returning an arbitrary string: ...
11
votes
6answers
1k views

Is it possible to create and initialize an array of values using template metaprogramming?

I want to be able to create an array of calculated values (let's say for simplicity's sake that I want each value to be the square of it's index) at compile time using template metaprogramming. Is ...
11
votes
4answers
821 views

java annotations: library to override annotations with xml files

Java has annotations and that is good. However, some developers feel that it is best to annotate code with metadata using xml files - others prefer annotations but would use metadata to override ...
11
votes
10answers
2k views

What is metaprogramming?

With reference to this question, could anybody please explain and post example code of metaprogramming? I googled the term up, but I found no examples to convince me that it can be of any practical ...

1 2 3 4 5 22