struct S { int value = 0; template <typename... T> decltype(auto) operator++(T...) { std::conditional_t<sizeof...(T), S, S&> that = *this; ...
確定! 回上一頁