April 26, 2022 Learn » Re: std.typecons Typedef initializers? | |||
|---|---|---|---|
| |||
...x, y; } alias Pair = Pair!(Space.unspecified); alias sPair = Pair!(Space.screen); alias vPair = Pair... | |||
April 25, 2022 Learn » Re: std.typecons Typedef initializers? | |||
|---|---|---|---|
| |||
...the documentation:][1] ```d alias MoneyEuros = Typedef!(float, float.init, "euros"); alias MoneyDollars = Typedef!(float... | |||
April 25, 2022 Learn » std.typecons Typedef initializers? | |||
|---|---|---|---|
| |||
...x,y; } alias sPair = Typedef!pair; // pair of xy in screen space coordinates alias vPair... | |||
April 25, 2022 Learn » Re: Linked list, printing looks destructive. | |||
|---|---|---|---|
| |||
...leaf).item;
return result;
}
//}
alias Next = popFront;
alias pop = front;
alias push = InsertBack;
void InsertBack... | |||
April 24, 2022 Learn » Re: Create a wrapper around larger c-libraries | |||
|---|---|---|---|
| |||
...C) @nogc nothrow {
void libprintme(char *s);
alias cprintme = libprintme;
}
```
?
The function pointer looks totally... | |||
April 24, 2022 Learn » Create a wrapper around larger c-libraries | |||
|---|---|---|---|
| |||
...extern(D) {
void dprintme(string ds){
alias dstring=string;
alias cstring=char *;
import std.conv... | |||
April 22, 2022 Learn » Re: Understanding alias template parameters | |||
|---|---|---|---|
| |||
...5); alias fun1 = (type a) => a * a; alias fun2 = (type a) => a * 2; alias fun3... | |||
April 22, 2022 Learn » Re: Understanding alias template parameters | |||
|---|---|---|---|
| |||
...wrote: > In response to the change to "alias", which has several upsides > including faster code... | |||
April 22, 2022 Issues » [Issue 23046] New: [REG][CODEGEN] __simd(XMM.LODLPS) bad codegen | |||
|---|---|---|---|
| |||
...import core.stdc.stdio; alias __m128 = float4; alias __m128i = int4; alias __m64 = long1; struct long1... | |||
April 22, 2022 Issues » [Issue 5710] cannot use nested function as alias parameter to non-global template | |||
|---|---|---|---|
| |||
...use nested function
|parameters to non-global |as alias parameter to
|template |non-global template
-- | |||
Copyright © 1999-2021 by the D Language Foundation