ページの改善
いますぐフォークしてオンライン編集し、このページのプルリクエストを送信します。 Github へのログインが必要です。 これは小さな変更に適しています。 大きな変更を加えたい場合は、通常の cloneの使用をお勧めします。
日本語版について
個人的な学習のために、dlang.orgを翻訳したサイトです。 翻訳に際して、様々なサイトを参考にしています。

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).
Authors:
Walter Bright, Hauke Duden
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.