Search

April 07, 2022
General »
...values fitting in a ulong ```template octal (alias decimalInteger)``` does **not** work.

I strongly recommend...
April 07, 2022
General »
...question related to the implementation

```
template octal(alias decimalInteger)
if (is(typeof(decimalInteger)) && isIntegral!(typeof...
April 06, 2022
General »
...Quote from `std/conv.d`:

```
template octal(alias decimalInteger)
if (is(typeof(decimalInteger)) && isIntegral!(typeof...
April 06, 2022
General »
...opDispatch(string func)
    {
        enum reqFunc = "xcb_" ~ func;
        alias Args = Parameters!(mixin(reqFunc));
        static assert(Args...
April 06, 2022
Learn »
...B : A
    {
        @MyUDA int b;
    }

    void main()
    {
        alias G = getSymbolsByUDA!(B, MyUDA);
    }



Output:


    c:\d...
April 06, 2022
Issues »
...B : A
{
    @MyUDA int b;
}

void main()
{
    alias G = getSymbolsByUDA!(B, MyUDA);
}


--------------------


That yield the...
April 06, 2022
Learn »
...the ones from mixin template.

You'd have to alias them together on the type.
April 05, 2022
Issues »
...i) { return i != 0; }

alias F1 = extern(C) bool function(int);
alias F2 = extern(C...
April 05, 2022
Issues »
...manifest constant on right-hand side of alias declaration" was merged into stable:

- 63e226e11764e04220b1a101e09a05d499e98a20 by...
April 04, 2022
Learn »
...impl = new Impl(generate());
			return impl.value;
		}
		alias get this;
	}

	void main() {
		import std;
		auto...
232 233 234 235 236 237 238 239 240 241 242
Next ›   Last »