Is seems, that there is no standard "one-function" method. Mentioned std::equal assumes, that second range is not shorter than the first. For example, this may lead to memory corruption, when second interval is empty. It also does not give answer, when second range is larger.
Combination of std::equal and std::distance is required, or self-written function:
template <class InputIterator1, class InputIterator2>
bool safe_equal( InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 second2 )
{
return ( std::distance( first1, last1 ) == std::distance( first2, last2 ) )
&& ( std::equal( first1, last1, first2 );
}
Function above may traverse containter twice for not Random Access Iterators, but uses standard functions. It may be reasonable to write own implementation, if this is not acceptable.