July 05 Issues » [Issue 23487] std.experimental.logger assigning FileLogger to sharedLog no longer works | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23487 --- Comment #4 from Bastiaan Veelo <Bastiaan... | |||
July 05 Issues » [Issue 23487] std.experimental.logger assigning FileLogger to sharedLog no longer works | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=23487 Bastiaan Veelo <Bastiaan@Veelo.net> changed... | |||
July 06 DIP Ideas » Re: Explcit impure function attribute | |||
|---|---|---|---|
| |||
I don't think it would be std.sumtype based. I do wish it was... | |||
July 05 DIP Development » Re: third draft: add bitfields to D | |||
|---|---|---|---|
| |||
...nicely with C23 _BitInt. https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2709... | |||
July 04 General » Re: Wouldn't this be better with bitfields? | |||
|---|---|---|---|
| |||
...about exact layout was always "just use std.bitmanip". I have since relented that I... | |||
July 03 Announce » D Language Foundation March 2024 Monthly Meeting Summary | |||
|---|---|---|---|
| |||
...between them. He knew you could import `std.array` and get the range API for... | |||
July 03 DIP Ideas » Re: Flags enum | |||
|---|---|---|---|
| |||
...invalid = Flags.mask(-1)
}
void main(){
import std.exception;
assert(Foo.none == 0);
Flags f... | |||
July 03 General » Re: Wouldn't this be better with bitfields? | |||
|---|---|---|---|
| |||
...we already basically have it:
```D
import std.bitmanip;
struct addsub_imm
{ mixin(bitfields!
( ubyte... | |||
July 03 General » Re: Wouldn't this be better with bitfields? | |||
|---|---|---|---|
| |||
...format, don't use bit fields. Use std.bitmanip."](https://forum.dlang.org/post/usd5b3... | |||
July 02 DIP Ideas » Re: Flags enum | |||
|---|---|---|---|
| |||
...cast(foo)(foo.e|foo.c);
import std;
f.i.writeln;
}
```
good luck getting such... | |||
Copyright © 1999-2021 by the D Language Foundation