July 08, 2022 Issues » [Issue 23234] Delegate literal with inferred return value that requires following alias-this uses class cast instead. | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23234 RazvanN <razvan.nitu1305@gmail.com> changed... | |||
July 08, 2022 Issues » [Issue 23234] Delegate literal with inferred return value that requires following alias-this uses class cast instead. | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23234 --- Comment #2 from mhh <maxhaton@gmail... | |||
July 08, 2022 Issues » [Issue 23234] Delegate literal with inferred return value that requires following alias-this uses class cast instead. | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23234
mhh <maxhaton@gmail.com> changed:
What... | |||
July 08, 2022 Issues » [Issue 23234] Delegate literal with inferred return value that requires following alias-this uses class cast instead. | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23234 Mario Kroeplin <kroeplin.d@googlemail.com... | |||
July 08, 2022 Learn » Re: Unwrap variadic template into vararg of pointers of the same types | |||
|---|---|---|---|
| |||
Corrections:
```d
alias Recurse = AliasSeq!(Arg[0]*, Recurse!(Arg[1..$]);
```d
void view_it(Args... | |||
July 08, 2022 Learn » Re: Unwrap variadic template into vararg of pointers of the same types | |||
|---|---|---|---|
| |||
...alias Args = AliasSeq!(int, string, double);
struct Includes { alias args = Args; }
struct entity_t {}
alias... | |||
July 08, 2022 Learn » Re: Unwrap variadic template into vararg of pointers of the same types | |||
|---|---|---|---|
| |||
...alias Recurse = AliasSeq!(Arg[0]*);
else
alias Recurse = AliasSeq!(Arg[0]*, Recurse!(Arg[0..$]);
}
alias... | |||
July 08, 2022 Learn » Re: Cannot copy void[] to void[] in @safe code? | |||
|---|---|---|---|
| |||
...to memory that also has a typed alias. You can have a `void[]` and a... | |||
July 08, 2022 Learn » Unwrap variadic template into vararg of pointers of the same types | |||
|---|---|---|---|
| |||
...type T -> T*
```D
struct Includes(Args...) { alias args = Args; }
void view_it(Includes)(void... | |||
July 08, 2022 Issues » [Issue 23234] New: Delegate literal with inferred return value that requires following alias-this uses class cast instead. | |||
|---|---|---|---|
| |||
...with inferred return value that
requires following alias-this uses class cast instead.
Product: D... | |||
Copyright © 1999-2021 by the D Language Foundation