Y
Hacker News
new
|
ask
|
show
|
jobs
by
wfwefwef32
2828 days ago
c++ static_if but for class members:
template<class Type> class A {
if constexpr (std::is_same<Type, int>::value) { int a; }
}