Sebastian Wilzbach

Results 389 issues of Sebastian Wilzbach

_From @wilzbach on May 23, 2016 18:56_ We never mention `+=`, `*=`, ... anywhere _Copied from original issue: stonemaster/dlang-tour#162_

Explain

_From @wilzbach on May 23, 2016 17:23_ `^`, `&`, `|` are never mentioned, can maybe combined with #130 _Copied from original issue: stonemaster/dlang-tour#141_

Explain

_From @wilzbach on May 18, 2016 7:49_ @CyberShadow shows a lot of hidden secrets in D at #dconf - one is them being the powerful D-specific features of std.format. ```...

Explain

_From @wilzbach on May 26, 2016 14:27_ I am not sure about this, but I think somewhere we should have pointers to have to create a good project in D....

New gem

_From @wilzbach on August 15, 2016 15:28_ We already have the [Traits](http://tour.dlang.io/tour/en/gems/traits)'s gem, but it could probably be split feature the term "design by introspection" a bit more. For me...

New gem

_From @wilzbach on June 26, 2016 0:6_ I feel that neither `alias`, static foreach and tuples are well represented in the tour. They are already needed in other sections (e.g....

New gem

_From @wilzbach on June 23, 2016 16:10_ Not well known, but often useful. https://dlang.org/lazy-evaluation.html _Copied from original issue: stonemaster/dlang-tour#330_

New gem

_From @wilzbach on June 14, 2016 1:26_ With [std.meta](https://dlang.org/phobos/std_meta.html) one can do cool stuff like static `foreach`: ``` foreach(Type, AliasSeq!(int, double) ... ``` and well [std.typecons](https://dlang.org/phobos/std_typecons.html) is D's library version...

New gem

_From @wilzbach on May 23, 2016 18:51_ Probably showing off the features/API in std.experimental.allocator _Copied from original issue: stonemaster/dlang-tour#159_

New gem

_From @wilzbach on June 10, 2016 14:15_ There are many awesome pragmas out there, my favorite one being: ``` d rdmd --force --eval='pragma(msg, __TIMESTAMP__);' ``` another important one is ```...

New gem