Search

September 18, 2023
Learn »
...12: error: none of the overloads of template 'core.stdc.stdarg.va_arg' are callable...
September 18, 2023
Announce »
...generic things, e.g. type erasure), collapse template instances, and keep ctfe things ctfe only...
September 16, 2023
Learn »
Note that this doesn't work in gdc.

The templated version is actually more akin...
September 15, 2023
Learn »
here's how

```d
import core.vararg;

void main()
{
    foo(.5, 5);
}

void foo(...)
{
    int...
September 14, 2023
Learn »
https://dlang.org/phobos/core_vararg.html

The common way to use **va_arg** is...
September 13, 2023
Issues »
...pull request #15572 "Fix Issue 24135 - Eponymous template member overloads not shown as call candidates...
September 13, 2023
Learn »
...generally be static, why not use a template parameter?  Besides, everything can be expressed with...
September 12, 2023
Issues »
...Error: template instance `opCast!int` does not match template declaration
`opCast(T : bool)()`
Error: template...
September 12, 2023
General »
...be like how const disappears on a template parameter when the type itself is already...
September 11, 2023
Learn »
...to be flexible enough by using a template parameter?

```d
enum Options : bool
{
  silenceErrorsOff, silenceErrorsOn...
116 117 118 119 120 121 122 123 124 125 126
Next ›   Last »