次の方法で共有


nullopt_t 構造体

nullopt_t 型は、省略可能なオブジェクトに値が含まれていないことを示すために使用される、一意の空の型です。

nullopt_t 型の定数 nullopt は、optional 型に初期化されていない状態があることを示します。 optional オブジェクトの初期化や、オブジェクトとの比較に使用できます。

構文

struct nullopt_t;
inline constexpr nullopt_t nullopt{ /*implementation-defined*/ };

関連項目

<省略可能>
省略可能なクラス