vote up 10 vote down star
6

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.

flag

37% accept rate

7 Answers

vote up 4 vote down

The D/Objective-C Bridge uses templates to let you manipulate Cocoa objects in D.

link|flag
vote up 3 vote down

DParse in Scrapple tools is a templated parser generator. However, ldc is the only D compiler with a functioning compile time GC (but even then it has a couple oddly random crashes). Ive played with it a little and you can do some interesting things like config file parsing and stuff, but until a compile time GC is fully running you cannot do big things.

link|flag
feeding it a D sized grammar (~200 productions) "only" takes 7 min and 700MB to compile. (full disclosure, I wrote dparse) – BCS Nov 4 '08 at 18:42
vote up 3 vote down

My favorites would be ElemType and KeyType from tools.base:

template ElemType(T) {
  alias typeof((function() {
    foreach (elem; Init!(T)) return elem; assert(false);
  })()) ElemType;
}

template KeyType(T) {
  alias typeof((function() {
    foreach (key, elem; Init!(T)) return key; assert(false);
  })()) KeyType;
}
link|flag
vote up 2 vote down

A united type template struct (It wont allow you to make unit errors.)

link|flag
vote up 2 vote down

An arbitrary precision type It generates ASM code at compile time (before the compiler does)

link|flag
vote up 1 vote down

I can't remember where - it might even have been on the D site - someone had written a compile time string hashing algorithm - so you can include strings in the source which will not be visible in the executable image.

link|flag
vote up 1 vote down

In terms of the outright coolest, I'd have to say Kirk McDonald's PyD (and other similar bindings) as these have do to a huge amount of work in detecting and handling lots of different types, as well as complex code generation.

That said, PyD only wins because BLADE technically uses CTFE, not templates.

On a more personal note, D templates have gotten extensive use in a research project of mine. It's a simulation framework where modules can define their own private data types. Exposing a new user type to the framework requires a single line of code which creates an XML parser for the type as well as associated network serialisation/deserialisation code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.