标签: c++ for-loop vector iterator range
有以下类型
template <typename T> using TL = std::vector<T>;
如何在两个变量上创建基于多个/的范围循环
TL <double> l1, l2; for ( auto a:l1, auto b:l2)
而不是使用
TL::iterator = il1, il2; for (il1 = l1. begin(), il2=l2.begin();;)
感谢您的帮助......