D Templates: Coolest Hack - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:32:24Z http://stackoverflow.com/feeds/question/245584 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245584/d-templates-coolest-hack 10 D Templates: Coolest Hack dsimcha 2008-10-29T02:11:21Z 2009-04-01T10:44:28Z <p>What is the coolest <strong>somewhat practical</strong> metaprogramming hack you've done or seen done in the D programming language? Somewhat practical means excluding, for example, the compile-time raytracer.</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/245732#245732 4 Answer by Ferruccio for D Templates: Coolest Hack Ferruccio 2008-10-29T03:49:23Z 2008-10-29T03:49:23Z <p>The <a href="http://michelf.com/projects/d-objc-bridge/" rel="nofollow">D/Objective-C Bridge</a> uses templates to let you manipulate Cocoa objects in D.</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/247725#247725 3 Answer by bmeck for D Templates: Coolest Hack bmeck 2008-10-29T17:40:25Z 2008-10-29T17:40:25Z <p>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.</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/247766#247766 3 Answer by FeepingCreature for D Templates: Coolest Hack FeepingCreature 2008-10-29T17:51:21Z 2008-10-29T17:51:21Z <p>My favorites would be ElemType and KeyType from tools.base:</p> <pre><code>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; } </code></pre> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/250474#250474 1 Answer by Phil Nash for D Templates: Coolest Hack Phil Nash 2008-10-30T15:00:21Z 2008-10-30T15:00:21Z <p>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.</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/262890#262890 2 Answer by BCS for D Templates: Coolest Hack BCS 2008-11-04T18:44:15Z 2008-11-04T18:44:15Z <p>A <a href="http://www.dsource.org/projects/scrapple/browser/trunk/units" rel="nofollow">united type template struct</a> (It wont allow you to make unit errors.)</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/262898#262898 2 Answer by BCS for D Templates: Coolest Hack BCS 2008-11-04T18:45:54Z 2008-11-04T18:45:54Z <p><a href="http://www.dsource.org/projects/scrapple/wiki/BigNum" rel="nofollow">An arbitrary precision type</a> It generates ASM code at compile time (before the compiler does)</p> http://stackoverflow.com/questions/245584/d-templates-coolest-hack/704969#704969 1 Answer by DK for D Templates: Coolest Hack DK 2009-04-01T10:44:28Z 2009-04-01T10:44:28Z <p>In terms of the outright coolest, I'd have to say Kirk McDonald's <a href="http://pyd.dsource.org/" rel="nofollow" title="PyD">PyD</a> (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.</p> <p>That said, PyD only wins because <a href="http://www.digitalmars.com/d/archives/digitalmars/D/BLADE%5F0.2Alpha%5FVector%5Foperations%5Fwith%5Fmixins%5Fexpression%5Ftemplates%5F51617.html" rel="nofollow">BLADE</a> technically uses CTFE, not templates.</p> <p>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.</p>