September 16, 2022 Issues » [Issue 23335] Error: Template lambda has no value when assigning to ref delegate return | |||
|---|---|---|---|
| |||
...has no value when assigning to ref delegate return https://github.com/dlang/dmd/pull... | |||
September 15, 2022 General » Re: What features of D you would not miss? | |||
|---|---|---|---|
| |||
...a delegate parameter returning T automatically wrapping an argument of type T into a delegate... | |||
September 15, 2022 Issues » [Issue 23335] Error: Template lambda has no value when assigning to ref delegate return | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23335 RazvanN <razvan.nitu1305@gmail.com> changed... | |||
September 15, 2022 General » Re: Poll: do you use @property semantics? | |||
|---|---|---|---|
| |||
...s expected foo = S(); // same @property void delegate() foo(); foo(); // same @property ref int foo... | |||
September 14, 2022 General » Re: Poll: do you use @property semantics? | |||
|---|---|---|---|
| |||
...these and
@property void delegate() foo() { ... }
obj.foo(); // should call the delegate, not be a... | |||
September 14, 2022 Issues » [Issue 23335] New: Error: Template lambda has no value when assigning to ref delegate return | |||
|---|---|---|---|
| |||
...fun = (a) {};
fun2 = (a) {};
}
void delegate(int) fun;
ref void delegate(int) fun2() {
return fun;
}
```
-- | |||
September 14, 2022 Learn » Re: C function taking two function pointers that share calculation | |||
|---|---|---|---|
| |||
...pointer and then the library calls your function on the pointer simulating a d delegate. | |||
September 13, 2022 Announce » Re: Introducing alid | |||
|---|---|---|---|
| |||
...is my opApply funtion:
int opApply(int delegate(ref EC.ET) func) scope
{
while(!empty... | |||
September 13, 2022 Learn » Linker Error with Template Function | |||
|---|---|---|---|
| |||
...status 1120 ``` The call is within a delegate to a function that returns a class... | |||
September 12, 2022 Learn » Re: Is there a way to | |||
|---|---|---|---|
| |||
...wanted. I wrap the handler in a delegate that has the signature I need. vibe... | |||
Copyright © 1999-2021 by the D Language Foundation