Search

December 02, 2021
General »
...variable that stores the value, and into alias, which stores only information for introspection.

OR...
December 01, 2021
Issues »
...void*`, rather than using the already defined alias that resolves to the correct type.

PR...
December 01, 2021
Issues »
...alias __builtin_va_list = __va_list_tag*;
    alias va_list = __builtin_va_list;
}
else
{
    alias...
November 29, 2021
General »
...alias Const(T) = aggregateOf(T)
    {
        static foreach (fieldName, fieldType; T.fieldsOf)
            const fieldType $fieldName;
    };

    alias...
November 27, 2021
Issues »
...A {}

alias SysFP = void function();
alias SafeFP = void function() @safe;

alias SysDG = void delegate();
alias...
November 27, 2021
General »
...go away, though, just like the original `alias old new;` syntax, so the real question...
November 26, 2021
General »
...storage classes, but in reality they just alias to `auto` or `__ghared` and add a...
November 26, 2021
Learn »
    Upps
    alias Empty2Type = Slice!(V*, 2LU, SliceKind.contiguous);
    fx = input.conv!(neumann, typeof(input), Empty2Type...
November 26, 2021
Learn »
...convolution.d(78,13):        Candidate is: `conv(alias bc = neumann, InputTensor, KernelTensor, MaskTensor = KernelTensor)(InputTensor...
November 26, 2021
General »
...struct Ptr {
        Obj* obj;
        size_t ver;
        alias this self;
        @property ref self() return scope...
266 267 268 269 270 271 272 273 274 275 276
Next ›   Last »