же задать для него Alias? Примерно так хочется:
c++
template<typename... T>
struct Foo
{
template<typename Needed>
static consteval auto GetValue()
{
return Needed::Value;
}
static consteval auto GetSumOfValues()
{
return (0 + ... + T::Value);
}
};
template<uint16_t _Value>
struct Nested
{
static constexpr auto Value = _Value;
};
using MyFoo = Foo<
Nested<0>, // Хочется using N1 = Nested<0>
Nested<1> // Хочется using N2 = Nested<1>
>;
int main() {
std::cout << MyFoo::GetValue<Nested<0>>() << std::endl;
std::cout << MyFoo::GetSumOfValues() << std::endl;
// Хочу так: std::cout << MyFoo::GetValue<N1>() << std::endl;
}
а что мешает using N1 = Nested<0>; using N2 = Nested<1>; using MyFoo = Foo<N1, N2>;
template<typename... T> struct Foo { template<typename Needed> static consteval auto GetValue() { return Needed::Value; } static consteval auto GetSumOfValues() { return (0 + ... + T::Value); } // псевдонимы шаблона для удобства использования template<uint16_t value> using N = Nested<value>; }; using MyFoo = Foo< MyFoo::N<0>, MyFoo::N<1> >; int main() { std::cout << MyFoo::GetValue<MyFoo::N<0>>() << std::endl; std::cout << MyFoo::GetSumOfValues() << std::endl; std::cout << MyFoo::GetValue<MyFoo::N<1>>() << std::endl; } *ответ от нейронки
Обсуждают сегодня