December 02, 2021 General » Create template expression sequence | |||
|---|---|---|---|
| |||
...variable that stores the value, and into alias, which stores only information for introspection. OR... | |||
December 01, 2021 Issues » [Issue 22558] [REG 2.098] Error: function 'core.stdc.stdio.vfprintf' 'pragma(printf)' functions must be 'extern(C) int vfprintf([parameters...], const(char)*, va_list)' | |||
|---|---|---|---|
| |||
...void*`, rather than using the already defined alias that resolves to the correct type. PR... | |||
December 01, 2021 Issues » [Issue 22558] New: [REG 2.098] Error: function 'core.stdc.stdio.vfprintf' 'pragma(printf)' functions must be 'extern(C) int vfprintf([parameters...], const(char)*, va_list)' | |||
|---|---|---|---|
| |||
...alias __builtin_va_list = __va_list_tag*;
alias va_list = __builtin_va_list;
}
else
{
alias... | |||
November 29, 2021 General » Re: Which language constructs could be done as a library if we accept some breaking changes? | |||
|---|---|---|---|
| |||
...alias Const(T) = aggregateOf(T)
{
static foreach (fieldName, fieldType; T.fieldsOf)
const fieldType $fieldName;
};
alias... | |||
November 27, 2021 Issues » [Issue 21537] Pointer to function pointer cannot be converted to pointer to const function pointer with lower attributes | |||
|---|---|---|---|
| |||
...A {}
alias SysFP = void function();
alias SafeFP = void function() @safe;
alias SysDG = void delegate();
alias... | |||
November 27, 2021 General » Re: DIP1000: Walter's proposal to resolve ambiguity of ref-return-scope parameters | |||
|---|---|---|---|
| |||
...go away, though, just like the original `alias old new;` syntax, so the real question... | |||
November 26, 2021 General » Re: DIP1000: Walter's proposal to resolve ambiguity of ref-return-scope parameters | |||
|---|---|---|---|
| |||
...storage classes, but in reality they just alias to `auto` or `__ghared` and add a... | |||
November 26, 2021 Learn » Re: I need some help for my DCV update | |||
|---|---|---|---|
| |||
Upps
alias Empty2Type = Slice!(V*, 2LU, SliceKind.contiguous);
fx = input.conv!(neumann, typeof(input), Empty2Type... | |||
November 26, 2021 Learn » I need some help for my DCV update | |||
|---|---|---|---|
| |||
...convolution.d(78,13): Candidate is: `conv(alias bc = neumann, InputTensor, KernelTensor, MaskTensor = KernelTensor)(InputTensor... | |||
November 26, 2021 General » Re: Enhancements can enable memory-safe reference counting | |||
|---|---|---|---|
| |||
...struct Ptr {
Obj* obj;
size_t ver;
alias this self;
@property ref self() return scope... | |||
Copyright © 1999-2021 by the D Language Foundation