September 02 Genel » AA Helper | |||
|---|---|---|---|
| |||
...Salon",
"Yatak Odası"];
import std.stdio;
void main()
{
Oda evimde = [evinNeresi[0]: Alan(3, 5... | |||
September 02 General » Re: Requirements for Slicing Ranges | |||
|---|---|---|---|
| |||
...slicing should probably be cut from that main api, Id argue its the hardest to... | |||
September 02 Issues » [Issue 24255] Can't deduce parameter type of function literal used as argument in IFTI | |||
|---|---|---|---|
| |||
...int){}
void argNG(OtherT)(OtherT ot){}
void main()
{
fun(123, &argOK);
fun(123, &argNG); // semantically... | |||
September 02 Learn » Re: Associative Array, get value instead of poiter using `if (auto ..)`, possible? | |||
|---|---|---|---|
| |||
...essentially you can do that:
```d
void main()
{
int[string] test;
test["hello"] = 42;
test... | |||
September 02 General » Re: Requirements for Slicing Ranges | |||
|---|---|---|---|
| |||
...struct DontCopyMe
{
this(this) { assert(0); }
}
void main()
{
auto r1 = [DontCopyMe(), DontCopyMe(), DontCopyMe()];
auto r2... | |||
September 01 DIP Ideas » Re: Allow default constructors for structs | |||
|---|---|---|---|
| |||
...i this;
}
alias sint = S!int;
void main()
{
sint s1;
auto s2 = sint(1);
auto... | |||
September 01 Issues » [Issue 24739] New: to!string always allocates a new string | |||
|---|---|---|---|
| |||
...struct S
{
string toString() { return "S"; }
}
void main()
{
import std.conv;
assert(S.init.toString... | |||
September 01 General » Re: How to find like-minded people and join trending projects? | |||
|---|---|---|---|
| |||
...popka/blob/main/TOUR.md) and [examples](https://github.com/Kapendev/popka/tree/main/examples... | |||
September 01 General » Re: How to find like-minded people and join trending projects? | |||
|---|---|---|---|
| |||
...2024) * [Part of My Project](https://github.com/Kapendev/popka/tree/main/source/popka/rl) | |||
September 01 Issues » [Issue 24717] alias edge cases with tupleof | |||
|---|---|---|---|
| |||
...S
{
int x;
int foo() => x;
}
void main()
{
S s = S(1);
apply!(S.foo... | |||
Copyright © 1999-2021 by the D Language Foundation