Search

April 26, 2022
Learn »
...x, y; }

alias Pair = Pair!(Space.unspecified);
alias sPair = Pair!(Space.screen);
alias vPair = Pair...
April 25, 2022
Learn »
...the documentation:][1]

```d
alias MoneyEuros = Typedef!(float, float.init, "euros");
alias MoneyDollars = Typedef!(float...
April 25, 2022
Learn »
...x,y;
}

alias sPair = Typedef!pair; // pair of xy in screen space coordinates
alias vPair...
April 25, 2022
Learn »
...leaf).item;

      return result;
    }
  //}

  alias Next = popFront;
  alias pop = front;
  alias push = InsertBack;

  void InsertBack...
April 24, 2022
Learn »
...C) @nogc nothrow {
    void libprintme(char *s);
    alias cprintme = libprintme;
}
```

?

The function pointer looks totally...
April 24, 2022
Learn »
...extern(D) {
	void dprintme(string ds){
		alias dstring=string;
		alias cstring=char *;
		import std.conv...
April 22, 2022
Learn »
...5);

  alias fun1 = (type a) => a * a;
  alias fun2 = (type a) => a * 2;
  alias fun3...
April 22, 2022
Learn »
...wrote:

> In response to the change to "alias", which has several upsides
> including faster code...
April 22, 2022
Issues »
...import core.stdc.stdio;

alias __m128 = float4;
alias __m128i = int4;
alias __m64 = long1;

struct long1...
April 22, 2022
Issues »
...use nested function
                   |parameters to non-global    |as alias parameter to
                   |template                    |non-global template

--
227 228 229 230 231 232 233 234 235 236 237
Next ›   Last »