I have an idea to estimate how long strlen takes on an exabyte
string.
Hi everyone,
So just wondering is it possible to branch off a thread into new
one (viewable as separate item in forum group)?
Also, is it possible to branch into a different gruop all
toghether?
I.e. from "blabla" thread in announce to "some other thing"
thread in learn for example?
Than
If you are using a NewsGroup reader like ThunderBird it should be
possible to branch off and post in a different one.
Although nobody does that, normally people rename the subject instead.
On Monday, 29 January 2024 at 14:59:23 UTC, Richard (Rikki)
Andrew Cattermole wrote:
If you are using a NewsGroup reader like ThunderBird it should
be possible to branch off and post in a different one.
What about web interface?
Although nobody does that, normally people rename the subject
in
On 30/01/2024 5:06 AM, Alexandru Ermicioi wrote:
On Monday, 29 January 2024 at 14:59:23 UTC, Richard (Rikki) Andrew
Cattermole wrote:
If you are using a NewsGroup reader like ThunderBird it should be
possible to branch off and post in a different one.
What about web interface?
I don't think
On Thursday, 25 January 2024 at 18:44:26 UTC, atzensepp wrote:
However this works:
```d
int delegate (int) td = (x) =>
compose!(f,g,g,f,g,g,f,g,g,f)(x);
```
While not a real function pointer, this might already fit your
needs.
```d
alias td = compose!(f,g);
```
I want to share a stupid program to show you that D safety is
more complex than you might think:
```d
module test;
void test() @safe
{
int i;
int b = (*&(*&++i))++;
}
void main() @safe
{
test();
}
```
I'm not showing a deficiency of D, that program is undeniably
safe ;)