KS
MyVector<int>::value_type;получить pair<int,string>
Size: a a a
KS
MyVector<int>::value_type;получить pair<int,string>
VT
VT
VT
KS
class MyVector {
using value_type = typename std::vector<...>::value_type;
};
G
VT
class MyVector {
using value_type = typename std::vector<...>::value_type;
};
G
VT
VT
VT
KS
VT
G
namespace std {
template <class T>
struct vector {
using value_type = std::tuple<T, T, T>;
};
}
VT
VT
VT
VT
G