5. 例題: std::is_constructible を実装しなさい struct is_constructible<T, Args…>: template<class T> typename add_rvalue_reference<T>::type create(); T t(create<Args>()...); がコンパイルできるかどうかを調べる. 5 6. 例題: std::is_constructible を実装しなさい struct is_constructible<T, Args…>: template<class T> typename add_rvalue_reference<T>::type create(); T t(create<Args>()...); がコンパイルできるかどうかを調べる. Args... という型を持つ変数で型 T の コンストラクタを呼べ
