Sebastian Wilzbach
Sebastian Wilzbach
Similarly to https://github.com/dlang/dlang.org/pull/2011
Follow-up to https://github.com/dlang/dlang.org/pull/1926. If we ever need `rdmd`, we can trivially built it from `tools`, which is already available. Next step would be to replace the `STABLE_DMD` download with only...
Starting with step 1 as outlined [here](http://forum.dlang.org/post/[email protected]) > 1. /library/ is promoted as the primary Phobos documentation in the site navigation. > 2. /phobos/ is removed from search indexing. >...
I just went with the current behavior - ideas for improvement are very welcome. Btw ideally all these examples would get verified automatically and are runnable online ...
resubmission of #1445 which now contains `` for graceful deprecation of whitespace links.
From https://github.com/dlang/phobos/pull/5558 ``` /// Add the mutable qualifier to the given type T. package template MutableOf(T) { alias MutableOf = T ; } ``` Should yield a warning: "Documented symbol...
https://issues.dlang.org/show_bug.cgi?id=17626 From the issue: I would like to suggest having the following code raise a compile-time warning: ``` x = x; ``` Other than invoking the copy constructor, this is...
The idea is that `static foreach` should be used for unrolling loops at compile-time and hence the warning should say something like: ``` is being unrolled at compile-time. Use static...
https://issues.dlang.org/show_bug.cgi?id=17618 This is very Phobos-specific, but would be very helpful as it repeatedly happened that when new symbols get added, these booktables aren't updated. Idea: > For all modules with...