Search

February 24, 2023
Issues »
...https://dlang.org/spec/template.html#typed_alias_op). Although what this bug report is...
February 24, 2023
Learn »
...Bar
	{
		@("hello") int t;
	}

	static bool hasAttribute(alias F, T)()
	{
		bool result = false;
		foreach (a...
February 24, 2023
Learn »
I never used really old D compiler, but the error looks reasonable to me. The...
February 23, 2023
General »
...parseControlCode(Parser)(ref Parser p) {
        return 0;
        }
    }
    alias Escapables = AliasSeq!('[', ']', '\\', '^', '$', '.', '|', '?', ',', '-',
    ';', ':', '#', '&', '%', '/', '<', '>', '`',  '*', '+', '(', ')', '{', '}',  '~');

    struct Stack(T) {
    @safe:
    T...
February 23, 2023
Issues »
...0);
alias noreturn = typeof(*null);

alias string  = immutable(char)[];
alias wstring = immutable(wchar)[];
alias dstring...
February 22, 2023
Learn »
Pretty sure this is just a bug. There are a lot of edge-case bugs...
February 22, 2023
Issues »
...to compile:

---
template foo(T, alias T a) {}

int n;
alias _ = foo!(int, n);
---

The...
February 22, 2023
Learn »
...time`. Small changes:
```d
template Foo(T, alias T[] Array) {
    // ...
}
// ...
Bar[] arr;
Foo!(Bar, arr...
February 22, 2023
Issues »
https://issues.dlang.org/show_bug.cgi?id=22269

Nick Treleaven <nick@geany.org> changed...
February 22, 2023
General »
...import core.stdc.string;

    alias WSAPOLLFD = pollfd;
    alias PWSAPOLLFD = pollfd*;
    alias LPWSAPOLLFD = pollfd*;
    struct pollfd...
133 134 135 136 137 138 139 140 141 142 143
Next ›   Last »