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).
- License:
- Boost License 1.0
- Authors:
- Walter Bright, Hauke Duden
- Source
- core/vararg.d
- alias va_arg = va_arg;
- void va_arg()(ref 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.
© 1999–2021 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_vararg.html