如果不专门针对每个类模板/类,是否可以编写一个通用的“重新绑定”元函数,这样给定
template<class > struct foo;
struct bar;
以下
is_same<rebind<foo<int>,float>,foo<float>>
is_same<rebind<bar>,bar>
有可能
is_same< rebind<std::vector<int>,float>,std::vector<float>>
返回一个等价于 true 的类型?