Search

May 04, 2022
Learn »
Alright, but we need a DIP to get the enhancement which can be in. :-) I...
May 04, 2022
Learn »
I don't believe those two words are mutually exclusive.

It can be a bug...
May 03, 2022
Learn »
Ok, so C++ has similar limitations when you have a template with an unknown parameter...
May 03, 2022
Learn »
...Nope. MyAlias is an alias. A template alias, but an alias nonetheless.
> It should be...
May 03, 2022
Learn »
...template Register() {
        static this() {
                import factory.register;

                alias This = typeof(this);

                // bypassing private
                __traits(getMember...
May 03, 2022
Issues »
https://issues.dlang.org/show_bug.cgi?id=23082

Basile-z <b2.temp@gmx.com...
May 03, 2022
Learn »
...such as:
```d
private mixin template RegisterModule(alias MOD) {
	void RegisterModule() {
		static foreach (SYM; getSymbolsByUDA...
May 03, 2022
Learn »
No, an alias is not a type and it'll be immediately substitutedwith the aliased...
May 03, 2022
Learn »
...in user code, especially with aliases that alias another aliased declarations. I think using [typedefs...
May 03, 2022
Learn »
...runtime type:
```d
class Foo {}
void main() {
	alias Foo F;
	writeln(fullyQualifiedName!F);
	auto f...
222 223 224 225 226 227 228 229 230 231 232
Next ›   Last »