7 hours ago Issues » [Issue 24551] Missing O_NOFOLLOW enum on macOS | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=24551 --- Comment #2 from dlangBugzillaToGithub <robert.schadek... | |||
7 hours ago Issues » [Issue 24222] emplace uses wrong init value for enum | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=24222 --- Comment #1 from dlangBugzillaToGithub <robert.schadek... | |||
7 hours ago Issues » [Issue 6974] [AA] Associative array with enum array keys is slow | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=6974 --- Comment #1 from dlangBugzillaToGithub <robert.schadek... | |||
2 days ago Learn » Re: Partial application on Nth argument | |||
|---|---|---|---|
| |||
...T e)
=> a~b~c~d~e;
enum msg { h = "h", e = "e", l = "l... | |||
2 days ago Learn » Re: Partial application on Nth argument | |||
|---|---|---|---|
| |||
...template partialN(alias func, int idx, args...)
{
enum error = "Missing argument!";
static assert(idx < args... | |||
3 days ago General » Re: Something like ADL from C++? | |||
|---|---|---|---|
| |||
...bac3426f9881e4a591df229423475efc6c3e0918
static foreach(i;0..10){
__local enum tmp = i*i;
// use tmp here
} // no... | |||
4 days ago General » Re: Something like ADL from C++? | |||
|---|---|---|---|
| |||
...string slowBuilder;
static foreach (i, Thing; Things)
{{
enum hasSerialiser = __traits(compiles, serialiserFor!Thing);
static if... | |||
4 days ago General » Re: Something like ADL from C++? | |||
|---|---|---|---|
| |||
...std.stdio;
writeln("T.serialise");
}
---
module main;
enum isUserType(T) = true; // change to whatever
// this... | |||
4 days ago Learn » Re: How can I have those "template instance recursive expansion" errors under control? | |||
|---|---|---|---|
| |||
...format: ```d enum isVector(T) = is(T==Vector!(CT, N), CT, int N); enum isScalar... | |||
4 days ago General » Something like ADL from C++? | |||
|---|---|---|---|
| |||
...foreach (thing; things)
{{
static if (isUserType!thing)
{
enum thingMod = getModuleForThing!thing;
mixin(import " ~ thingMod ~ ";");
}
serialise... | |||
Copyright © 1999-2021 by the D Language Foundation