Search

1 day ago
Announce »
...was currently working on the function call return sequence. Having spent some time with it...
1 day ago
Issues »
https://issues.dlang.org/show_bug.cgi?id=14172

--- Comment #3 from dlangBugzillaToGithub <robert.schadek...
3 days ago
DIP Ideas »
...allow us to have @property functions which return delegates and other callables. That's what...
3 days ago
DIP Ideas »
...in others, meaning that it couldn't return by ref in general. Certainly, returning by...
3 days ago
Learn »
...static if (N == 0)
      return func(fixedArgs[0], argsRest);
    else
      return func(argsRest[0 .. N...
3 days ago
Issues »
...return scope const typeof(this) other);
```

And:

```d
export:
nothrow @safe:
@disable this(ref return...
3 days ago
Issues »
...struct String {
    export:
    nothrow @nogc:
    @safe:
    this(return scope ref typeof(this) other) @trusted scope...
3 days ago
Announce »
...didn't get attributes, and `scope` and `return` were getting interpreted the wrong way around...
4 days ago
Learn »
...length, error);

  auto partialN(T)(T first)
  {
    return func(first, args[idx]);
  }
} unittest {
  auto sum...
4 days ago
Learn »
...unittest{
	int fun(int a, int b) { return a - b; }
	// create a function with the...
« First   ‹ Prev
1 2
Next ›   Last »