September 01 General » Re: DIP1000 observation | |||
|---|---|---|---|
| |||
...a daemon work fast then that is ok. This is not an either/or situation... | |||
August 31 Issues » [Issue 24735] Enum is not work within the member function in the synchronized class | |||
|---|---|---|---|
| |||
...but ENUM1 is constant.
auto b = ENUM2; // OK
}
}
void main()
{
auto a = new shared(A... | |||
August 31 Announce » Re: D Language Foundation May 2024 Monthly Meeting Summary | |||
|---|---|---|---|
| |||
Ok, maybe I just read more to the nuances of the summary than there actually... | |||
August 31 Issues » [Issue 24717] alias edge cases with tupleof | |||
|---|---|---|---|
| |||
...tupleof[0]; // error
alias x = s.x; // OK
x.writeln; // error, no instance of S... | |||
August 31 General » Re: This needs to be fixed - ref | |||
|---|---|---|---|
| |||
OK, thanks. And `s.expand[0].writeln();` works too. So the following error makes sense... | |||
August 31 Issues » [Issue 24735] New: Enum is not work within the member function in the synchronized class | |||
|---|---|---|---|
| |||
...b = ENUM2; // OK
}
static void g()
{
auto c = ENUM1; // OK
auto d = ENUM2; // OK
}
}
void... | |||
August 30 DIP Ideas » Re: Allow default constructors for structs | |||
|---|---|---|---|
| |||
...d
struct S
{
this(int) {}
}
S s; // ok?
```
Seems like if you want to *require... | |||
August 29 DIP Ideas » Allow default constructors for structs | |||
|---|---|---|---|
| |||
...S t = S(); // ok (constructed by calling `S.this()`)
S u = void; // ok (not `@safe... | |||
August 29 General » Re: Tell us your DIP1000 woes | |||
|---|---|---|---|
| |||
...T input1, ref @escapeas(input1) T input2); ``` Ok great, you modeled the escapes, congratulations. Or... | |||
August 26 General » Re: This needs to be fixed | |||
|---|---|---|---|
| |||
...alias x = s.tupleof;
x[0] = 2; // ok
alias y = s.x;
y = 2; // error... | |||
Copyright © 1999-2021 by the D Language Foundation