By range I mean a pair of iterators. In pseudo C++:
std::vector<int> v1 = { 1, 2, 3, 4, 5 };
std::vector<int> v2 = { 2, 3, 4 };
if( std::compare_range( v1.begin() + 1, v1.end() - 1, v2.begin(), v2.end() ) {
std::cout << "Alright
";
}
compare_range
being of course the function I'm looking for.
Disclaimer: This is a pretty trivial function to write, I know. But like all programmers, I try to be lazy ;-)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…