Avatar
requires節は関数本体に書いてたstatic_assertが関数宣言部にかけるようになった感じ? c++ template <class T> requires std::constructible_from<T, int> && std::move_constructible<T> T make_from_int(int x) { return T(x); } (edited)