core.vararg

The vararg module is intended to facilitate vararg manipulation in D. It should be interface compatible with the C module "stdarg," and the two modules may share a common implementation if possible (as is done here).

Public Imports

core.stdc.stdarg
public import core.stdc.stdarg;
Undocumented in source.

Members

Aliases

va_arg
alias va_arg = core.stdc.stdarg.va_arg

Functions

va_arg
void va_arg(va_list ap, TypeInfo ti, void* parmn)

Retrieve and store through parmn the next value that is of TypeInfo ti. Used when the static type is not known.

Meta

Authors

Walter Bright, Hauke Duden