Now that we have constexpr if, can we find if a type is the specialization of a certain template (say:
1 2 3 4 5
std::set<int> s;
// or
std::vector<int> s;
ifconstexpr ( decltype(s) IS set<T> ) ///// obviously not C++
Maybe in the case of containers, they have tags? If so, then we can query what kind of container we have. But I was looking for more deep reflection...