Hidden features of D - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:56:58Z http://stackoverflow.com/feeds/question/125008 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/125008/hidden-features-of-d 13 Hidden features of D Baxissimo 2008-09-24T02:07:25Z 2009-07-23T13:06:47Z <p>Continuing on the hidden features meme, I'd like to ask, what are the lesser-known features of the <a href="http://www.digitalmars.com/d" rel="nofollow">D programming language</a> that every D user should know about?</p> <p>Some related program language "hidden features" questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li> <li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li> <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li> <li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li> </ul> <p>To kick it off, Don Clugston noted that some of these <a href="http://prowiki.org/wiki4d/wiki.cgi?EasterEggs" rel="nofollow">Easter Eggs</a> may qualify as good "hidden features" to know.</p> http://stackoverflow.com/questions/125008/hidden-features-of-d/125904#125904 2 Answer by Ace for Hidden features of D Ace 2008-09-24T07:50:25Z 2008-09-24T07:50:25Z <p>Maybe not so hidden but Array Slicing is pretty nifty.</p> <p><a href="http://en.wikipedia.org/wiki/Array_slicing#1999:_D" rel="nofollow">http://en.wikipedia.org/wiki/Array_slicing#1999:_D</a></p> http://stackoverflow.com/questions/125008/hidden-features-of-d/126686#126686 10 Answer by Baxissimo for Hidden features of D Baxissimo 2008-09-24T11:53:08Z 2008-09-24T11:53:08Z <p>This is a little <code>.tupleof</code> trick I find nifty, though I have to admit I haven't actually used it all that much:</p> <p>Say you have a function:</p> <pre><code>setPosition(float x, float y, float z); </code></pre> <p>And you have a Point struct:</p> <pre><code>struct Point { float x; float y; float z; } </code></pre> <p>And a <code>Point</code> variable called <code>m_currentPos</code>. Now you want to call <code>setPosition</code> with the variable as the argument. Instead of explicitly dereferencing each component, you can just do:</p> <pre><code>setPosition(m_currentPos.tupleof); </code></pre> <p>which is equivalent to typing out:</p> <pre><code>setPosition(m_currentPos.x, m_currentPos.y, m_currentPos.z); </code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/347547#347547 4 Answer by Ctrl Alt D-1337 for Hidden features of D Ctrl Alt D-1337 2008-12-07T12:54:54Z 2008-12-07T12:54:54Z <p>One important difference between C/C++ and D is the way D treats pointers and arrays as part of type. I think this is a major improvement but developers need to be very aware of this to avoid problems.</p> <p>In D to declare 2 char pointers you do:</p> <pre><code>char* chp1, chp2; </code></pre> <p>In C it's done like this:</p> <pre><code>char *chp1, *chp2; </code></pre> <p>Another example in C:</p> <pre><code>int *p, q, t[3], *s; </code></pre> <p>And in D:</p> <pre><code>int* p, s; int q; int[3] t; </code></pre> <p>This can be a hidden problem to new D devs, porting from c especially but once understood its a cool clean feature.</p> http://stackoverflow.com/questions/125008/hidden-features-of-d/365513#365513 1 Answer by hasen j for Hidden features of D hasen j 2008-12-13T18:06:31Z 2008-12-13T18:06:31Z <p>not hidden but a "nifty feature":<br /> array copying: </p> <pre><code>arr2[] = arr1[]; </code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/480273#480273 3 Answer by FeepingCreature for Hidden features of D FeepingCreature 2009-01-26T15:58:03Z 2009-01-26T15:58:03Z <p>The one thing that I personally consider the "niftiest" Hidden Feature is variable declaration in if expressions - i.e. <pre><code> import tools.base; void main() { auto test = "test foo"; if (auto rest = test.startsWith("test ")) assert(rest == "foo"); }</code></pre></p> <p>This can also be used to simplify casts.</p> <pre><code> class A { } void main() { Object obj = new A; if (auto obj_as_a = cast(A) obj) { // ... } }</code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/484977#484977 1 Answer by dsimcha for Hidden features of D dsimcha 2009-01-27T19:58:49Z 2009-01-27T19:58:49Z <p>The struct/tuple duality is pretty useful. For example, here's a generic comparison function for structs. This is useful if you need a total ordering among a bunch of structs, but it doesn't matter exactly how that total ordering is defined, such as for placing them in some kind of binary tree. It works by treating the elements of the struct as representing place value, i.e. compare the first element first, if equal, break tie with second element, etc. Note that this will only work in recent versions of D2.</p> <pre><code>enum CompareStructs = " int opCmp(const typeof(this) rhs) { foreach(ti, elem; this.tupleof) { if(elem &lt; rhs.tupleof[ti]) { return -1; } else if(elem &gt; rhs.tupleof[ti]) { return 1; } } return 0; } "; struct Foo { uint first; uint second; mixin(CompareStructs); } void main() { // Test it out. Foo small = Foo(1, 2); Foo large = Foo(2, 1); assert(small &lt; large); assert(large &gt; small); } </code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/505645#505645 0 Answer by Baxissimo for Hidden features of D Baxissimo 2009-02-03T00:47:34Z 2009-02-03T00:47:34Z <p>This is a nifty static if trick I picked up recently (I think I saw it first in some of Andrei's code).</p> <p>The situation is that you want to check at compile time if some bit of code is valid or not. Say you want to know if type T supports concatenation by type S using the ~= operator. Bascially you want to know if this will compile or not:</p> <pre><code>T x; S y; x ~= y; </code></pre> <p>The cool trick is to just put that code in an anonymous delegate and use typeof to see if it compiles. </p> <pre><code>static if (is(typeof({T x; S y; x~=y;}))) { /* do something */ } else { /* do something else */ } </code></pre> <p>If it compiles, the typeof() will return void delegate() and is() will be true, if it doesn't compile then the tyepof will be invalid and is() will return false.</p> <p>You can also use .init to avoid making variable names:</p> <pre><code>static if (is(typeof({T.init~=S.init;}))) { /* do something */ } else { /* do something else */ } </code></pre> <p>Note that this is primarily for D1. In D2 there's __traits(compiles, T.init ~= S.init).</p> http://stackoverflow.com/questions/125008/hidden-features-of-d/786640#786640 0 Answer by zkp0s for Hidden features of D zkp0s 2009-04-24T16:35:06Z 2009-04-24T19:46:56Z <p>a few tricks from D2.x</p> <pre> <code> import std.stdio; pragma(msg,"hello world"); //a delegate type alias int delegate(int) int_dg; void main (string[] args){ //Function literals! int_dg dg = delegate(int x){ return x*x; }; writefln("dg(2) = %d",dg(2)); //Functions that return functions int_dg del = tricky(dg); writefln("del(2) = %d",del(2)); ubyte crazy (ubyte a) { if (a &#60; 20){ return a+12; }else{ return a-12; } } //Metaprogramming with templates and delegtates wooho writefln("Sh!(ubyte).tricky(&crazy)(2) = %d",Sh!(ubyte).tricky(&crazy)(2)); writeln(typeid(DgTup!(DgTup!(byte)))); //Tuples alias Tuple!(int,float,3) E; //Template mixins mixin MixMe!(E[0]); x = E[2]; writeln(x); } int_dg tricky (int_dg dg){ return delegate(int d){ return dg(dg(d+d+d)); }; } template Sh (T){ DgTup!(T) tricky (DgTup!(T) dg){ return delegate(T d){ return dg(dg(d+d+d)); }; } } template Tuple(E...){ alias E Tuple; } template DgTup(T){ alias T delegate(T) DgTup; } template MixMe(T) { T x = 5; } </code> </pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/867413#867413 3 Answer by MrTact for Hidden features of D MrTact 2009-05-15T07:33:46Z 2009-05-15T07:33:46Z <p>My favorites are some of the simpler language conceits to make life a little easier. For example, the ability to group the digits of numeric literals using the _ character:</p> <pre><code>int x = 65_536; </code></pre> <p>Also, the existence of nesting block comments (using /+ +/), specifically for commenting out code:</p> <pre><code>/+++++ /* * comment * comment */ statement; statement; +++++/ </code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/1028002#1028002 1 Answer by Keyframe for Hidden features of D Keyframe 2009-06-22T15:59:47Z 2009-06-22T15:59:47Z <p>this is a nice trick if you have problems with array declarations, but you know how you would like to write it when using it.</p> <p>for example if you would like to use something as complicated as </p> <pre><code>[["foo"[]: "bar"[]]: 5] </code></pre> <p>you can put a quick pragma in your code and compiler will output a declaration you need to use:</p> <pre><code>pragma(msg, typeof([["foo"[]: "bar"[]]: 5]).stringof); </code></pre> <p>this will output:</p> <pre><code>int[char[][char[]]] </code></pre> http://stackoverflow.com/questions/125008/hidden-features-of-d/1171578#1171578 1 Answer by Ctrl Alt D-1337 for Hidden features of D Ctrl Alt D-1337 2009-07-23T13:06:47Z 2009-07-23T13:06:47Z <p>D has a great template system. It includes constraints which are the D equivalent of the dropped C++0x concepts.</p> <p>D's templates can do a lot but what really 'puts the icing on the cake' and is not very well know is that D supports CTFE (Compile Time Function Execution).</p> <p>See these 2 links for more info: <br/><a href="http://en.wikipedia.org/wiki/Compile%5Ftime%5Ffunction%5Fexecution" rel="nofollow">en.wikipedia.org</a><br/> <a href="http://www.digitalmars.com/d/2.0/function.html#interpretation" rel="nofollow">www.digitalmars.com</a></p>