Last update Sun Feb 26 16:21:16 2006
std
 std.atomic
 std.exception
 std.intrinsic
 std.memory
 std.stdarg
 std.thread

std.stdarg

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

template va_start(T)


template va_arg(T)


void va_end(void* ap);


void va_copy(out void* dest, void* src);