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

core.stdcpp.exception

Interface to C++
Authors:
Walter Bright Manu Evans
alias terminate_handler = extern (C++) void function() nothrow @nogc;
nothrow @nogc terminate_handler set_terminate(terminate_handler f);
nothrow @nogc terminate_handler get_terminate();
nothrow @nogc void terminate();
alias unexpected_handler = extern (C++) void function() @nogc;
deprecated nothrow @nogc unexpected_handler set_unexpected(unexpected_handler f);
deprecated nothrow @nogc unexpected_handler get_unexpected();
deprecated @nogc void unexpected();
nothrow @nogc bool uncaught_exception();
class exception;
nothrow @nogc this();
const nothrow @nogc const(char)* what();
class bad_exception: core.stdcpp.exception.exception;
nothrow @nogc this(const(char)* message = "bad exception");
const nothrow @nogc const(char)* what();