D Templates: Coolest Hack - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T08:32:24Zhttp://stackoverflow.com/feeds/question/245584http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245584/d-templates-coolest-hack10D Templates: Coolest Hackdsimcha2008-10-29T02:11:21Z2009-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#2457324Answer by Ferruccio for D Templates: Coolest HackFerruccio2008-10-29T03:49:23Z2008-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#2477253Answer by bmeck for D Templates: Coolest Hackbmeck2008-10-29T17:40:25Z2008-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#2477663Answer by FeepingCreature for D Templates: Coolest HackFeepingCreature2008-10-29T17:51:21Z2008-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#2504741Answer by Phil Nash for D Templates: Coolest HackPhil Nash2008-10-30T15:00:21Z2008-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#2628902Answer by BCS for D Templates: Coolest HackBCS2008-11-04T18:44:15Z2008-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#2628982Answer by BCS for D Templates: Coolest HackBCS2008-11-04T18:45:54Z2008-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#7049691Answer by DK for D Templates: Coolest HackDK2009-04-01T10:44:28Z2009-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>