1 day ago Announce » D Language Foundation July 2024 Quarterly Meeting Summary | |||
|---|---|---|---|
| |||
...was currently working on the function call return sequence. Having spent some time with it... | |||
1 day ago Issues » [Issue 14172] on windows , core.stdc.time.time function return value is wrong | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=14172 --- Comment #3 from dlangBugzillaToGithub <robert.schadek... | |||
3 days ago DIP Ideas » Re: @property fields | |||
|---|---|---|---|
| |||
...allow us to have @property functions which return delegates and other callables. That's what... | |||
3 days ago DIP Ideas » Re: @property fields | |||
|---|---|---|---|
| |||
...in others, meaning that it couldn't return by ref in general. Certainly, returning by... | |||
3 days ago Learn » Re: Partial application on Nth argument | |||
|---|---|---|---|
| |||
...static if (N == 0)
return func(fixedArgs[0], argsRest);
else
return func(argsRest[0 .. N... | |||
3 days ago Issues » [Issue 24891] Two scope attributes emitted as part of .di generation | |||
|---|---|---|---|
| |||
...return scope const typeof(this) other); ``` And: ```d export: nothrow @safe: @disable this(ref return... | |||
3 days ago Issues » [Issue 24891] New: Two scope attributes emitted as part of .di generation | |||
|---|---|---|---|
| |||
...struct String {
export:
nothrow @nogc:
@safe:
this(return scope ref typeof(this) other) @trusted scope... | |||
3 days ago Announce » D Language Foundation June Monthly Meeting Summary | |||
|---|---|---|---|
| |||
...didn't get attributes, and `scope` and `return` were getting interpreted the wrong way around... | |||
4 days ago Learn » Re: Partial application on Nth argument | |||
|---|---|---|---|
| |||
...length, error);
auto partialN(T)(T first)
{
return func(first, args[idx]);
}
} unittest {
auto sum... | |||
4 days ago Learn » Re: Partial application on Nth argument | |||
|---|---|---|---|
| |||
...unittest{
int fun(int a, int b) { return a - b; }
// create a function with the... | |||
Copyright © 1999-2021 by the D Language Foundation