エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
namespace std { template <bool Condition, class T = void> struct enable_if; template <bool Condit... namespace std { template <bool Condition, class T = void> struct enable_if; template <bool Condition, class T = void> using enable_if_t = typename enable_if<Condition,T>::type; // C++14 } 概要 コンパイル時条件式が真の場合のみ有効な型。 効果 enable_ifは、Conditionがtrueの場合のみ、型Tをメンバ型typeとして定義する。そうでなければenable_ifは、メンバ型typeを持たない。 enable_ifは、SFINAEと組み合わせて使用する。関数のパラメータ、戻り値型、デフォルトテンプレートパラメータ等のいずれかでenable_ifのメンバ型typeを使用することにより、テンプレート